Official Southwest Florida Roblox Wiki strigidwiki https://strigid.miraheze.org/wiki/Main_Page MediaWiki 1.40.1 first-letter Media Special Talk User User talk Official Southwest Florida Roblox Wiki Official Southwest Florida Roblox Wiki talk File File talk MediaWiki MediaWiki talk Template Template talk Help Help talk Category Category talk Campaign Campaign talk Module Module talk Template:Cob 10 1762 2545 2012-03-13T00:04:32Z Wikipedia>Gfoley4 0 Protected Template:Cob: redirect to a highly used template (‎[edit=sysop] (indefinite) ‎[move=sysop] (indefinite)) wikitext text/x-wiki #REDIRECT [[Template:Collapse bottom]] 414179c04bb216d1df3d18596af4673de10bb273 Template:Cl 10 1720 2461 2019-04-24T04:30:48Z Wikipedia>JJMC89 0 actual template is in the category wikitext text/x-wiki #REDIRECT [[Template:Category link]] {{R from move}} f79fddc38797fc163b6e6ddeb4377afbea7d0cfc Template:Clc 10 1755 2531 2019-04-24T04:30:59Z Wikipedia>JJMC89 0 actual template is in the category wikitext text/x-wiki #REDIRECT [[Template:Category link with count]] 02280e2ab57b544236e11f913e3759c5781ca9d5 Module:Arguments 828 1772 2570 2020-04-01T06:12:40Z wikipedia>MusikAnimal 0 1 revision imported Scribunto text/plain -- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string' then val = val:match('^%s*(.-)%s*$') if val == '' then return nil else return val end else return val end end local function tidyValTrimOnly(key, val) if type(val) == 'string' then return val:match('^%s*(.-)%s*$') else return val end end local function tidyValRemoveBlanksOnly(key, val) if type(val) == 'string' then if val:find('%S') then return val else return nil end else return val end end local function tidyValNoChange(key, val) return val end local function matchesTitle(given, title) local tp = type( given ) return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title end local translate_mt = { __index = function(t, k) return k end } function arguments.getArgs(frame, options) checkType('getArgs', 1, frame, 'table', true) checkType('getArgs', 2, options, 'table', true) frame = frame or {} options = options or {} --[[ -- Set up argument translation. --]] options.translate = options.translate or {} if getmetatable(options.translate) == nil then setmetatable(options.translate, translate_mt) end if options.backtranslate == nil then options.backtranslate = {} for k,v in pairs(options.translate) do options.backtranslate[v] = k end end if options.backtranslate and getmetatable(options.backtranslate) == nil then setmetatable(options.backtranslate, { __index = function(t, k) if options.translate[k] ~= k then return nil else return k end end }) end --[[ -- Get the argument tables. If we were passed a valid frame object, get the -- frame arguments (fargs) and the parent frame arguments (pargs), depending -- on the options set and on the parent frame's availability. If we weren't -- passed a valid frame object, we are being called from another Lua module -- or from the debug console, so assume that we were passed a table of args -- directly, and assign it to a new variable (luaArgs). --]] local fargs, pargs, luaArgs if type(frame.args) == 'table' and type(frame.getParent) == 'function' then if options.wrappers then --[[ -- The wrappers option makes Module:Arguments look up arguments in -- either the frame argument table or the parent argument table, but -- not both. This means that users can use either the #invoke syntax -- or a wrapper template without the loss of performance associated -- with looking arguments up in both the frame and the parent frame. -- Module:Arguments will look up arguments in the parent frame -- if it finds the parent frame's title in options.wrapper; -- otherwise it will look up arguments in the frame object passed -- to getArgs. --]] local parent = frame:getParent() if not parent then fargs = frame.args else local title = parent:getTitle():gsub('/sandbox$', '') local found = false if matchesTitle(options.wrappers, title) then found = true elseif type(options.wrappers) == 'table' then for _,v in pairs(options.wrappers) do if matchesTitle(v, title) then found = true break end end end -- We test for false specifically here so that nil (the default) acts like true. if found or options.frameOnly == false then pargs = parent.args end if not found or options.parentOnly == false then fargs = frame.args end end else -- options.wrapper isn't set, so check the other options. if not options.parentOnly then fargs = frame.args end if not options.frameOnly then local parent = frame:getParent() pargs = parent and parent.args or nil end end if options.parentFirst then fargs, pargs = pargs, fargs end else luaArgs = frame end -- Set the order of precedence of the argument tables. If the variables are -- nil, nothing will be added to the table, which is how we avoid clashes -- between the frame/parent args and the Lua args. local argTables = {fargs} argTables[#argTables + 1] = pargs argTables[#argTables + 1] = luaArgs --[[ -- Generate the tidyVal function. If it has been specified by the user, we -- use that; if not, we choose one of four functions depending on the -- options chosen. This is so that we don't have to call the options table -- every time the function is called. --]] local tidyVal = options.valueFunc if tidyVal then if type(tidyVal) ~= 'function' then error( "bad value assigned to option 'valueFunc'" .. '(function expected, got ' .. type(tidyVal) .. ')', 2 ) end elseif options.trim ~= false then if options.removeBlanks ~= false then tidyVal = tidyValDefault else tidyVal = tidyValTrimOnly end else if options.removeBlanks ~= false then tidyVal = tidyValRemoveBlanksOnly else tidyVal = tidyValNoChange end end --[[ -- Set up the args, metaArgs and nilArgs tables. args will be the one -- accessed from functions, and metaArgs will hold the actual arguments. Nil -- arguments are memoized in nilArgs, and the metatable connects all of them -- together. --]] local args, metaArgs, nilArgs, metatable = {}, {}, {}, {} setmetatable(args, metatable) local function mergeArgs(tables) --[[ -- Accepts multiple tables as input and merges their keys and values -- into one table. If a value is already present it is not overwritten; -- tables listed earlier have precedence. We are also memoizing nil -- values, which can be overwritten if they are 's' (soft). --]] for _, t in ipairs(tables) do for key, val in pairs(t) do if metaArgs[key] == nil and nilArgs[key] ~= 'h' then local tidiedVal = tidyVal(key, val) if tidiedVal == nil then nilArgs[key] = 's' else metaArgs[key] = tidiedVal end end end end end --[[ -- Define metatable behaviour. Arguments are memoized in the metaArgs table, -- and are only fetched from the argument tables once. Fetching arguments -- from the argument tables is the most resource-intensive step in this -- module, so we try and avoid it where possible. For this reason, nil -- arguments are also memoized, in the nilArgs table. Also, we keep a record -- in the metatable of when pairs and ipairs have been called, so we do not -- run pairs and ipairs on the argument tables more than once. We also do -- not run ipairs on fargs and pargs if pairs has already been run, as all -- the arguments will already have been copied over. --]] metatable.__index = function (t, key) --[[ -- Fetches an argument when the args table is indexed. First we check -- to see if the value is memoized, and if not we try and fetch it from -- the argument tables. When we check memoization, we need to check -- metaArgs before nilArgs, as both can be non-nil at the same time. -- If the argument is not present in metaArgs, we also check whether -- pairs has been run yet. If pairs has already been run, we return nil. -- This is because all the arguments will have already been copied into -- metaArgs by the mergeArgs function, meaning that any other arguments -- must be nil. --]] if type(key) == 'string' then key = options.translate[key] end local val = metaArgs[key] if val ~= nil then return val elseif metatable.donePairs or nilArgs[key] then return nil end for _, argTable in ipairs(argTables) do local argTableVal = tidyVal(key, argTable[key]) if argTableVal ~= nil then metaArgs[key] = argTableVal return argTableVal end end nilArgs[key] = 'h' return nil end metatable.__newindex = function (t, key, val) -- This function is called when a module tries to add a new value to the -- args table, or tries to change an existing value. if type(key) == 'string' then key = options.translate[key] end if options.readOnly then error( 'could not write to argument table key "' .. tostring(key) .. '"; the table is read-only', 2 ) elseif options.noOverwrite and args[key] ~= nil then error( 'could not write to argument table key "' .. tostring(key) .. '"; overwriting existing arguments is not permitted', 2 ) elseif val == nil then --[[ -- If the argument is to be overwritten with nil, we need to erase -- the value in metaArgs, so that __index, __pairs and __ipairs do -- not use a previous existing value, if present; and we also need -- to memoize the nil in nilArgs, so that the value isn't looked -- up in the argument tables if it is accessed again. --]] metaArgs[key] = nil nilArgs[key] = 'h' else metaArgs[key] = val end end local function translatenext(invariant) local k, v = next(invariant.t, invariant.k) invariant.k = k if k == nil then return nil elseif type(k) ~= 'string' or not options.backtranslate then return k, v else local backtranslate = options.backtranslate[k] if backtranslate == nil then -- Skip this one. This is a tail call, so this won't cause stack overflow return translatenext(invariant) else return backtranslate, v end end end metatable.__pairs = function () -- Called when pairs is run on the args table. if not metatable.donePairs then mergeArgs(argTables) metatable.donePairs = true end return translatenext, { t = metaArgs } end local function inext(t, i) -- This uses our __index metamethod local v = t[i + 1] if v ~= nil then return i + 1, v end end metatable.__ipairs = function (t) -- Called when ipairs is run on the args table. return inext, t, 0 end return args end return arguments 3134ecce8429b810d445e29eae115e2ae4c36c53 Module:Yesno 828 1769 2564 2020-04-01T06:27:55Z wikipedia>MusikAnimal 0 Undid revision 948472533 by [[Special:Contributions/w>Vogone|w>Vogone]] ([[User talk:w>Vogone|talk]]) Scribunto text/plain -- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val == 'true' or val == 't' or val == 'on' or tonumber(val) == 1 then return true elseif val == false or val == 'no' or val == 'n' or val == 'false' or val == 'f' or val == 'off' or tonumber(val) == 0 then return false else return default end end f767643e7d12126d020d88d662a3dd057817b9dc Template:Cot 10 1763 2547 2021-01-23T15:32:43Z Wikipedia>Elli 0 not needed wikitext text/x-wiki #REDIRECT [[Template:Collapse top]] {{Redirect category shell| {{R from template shortcut}} }} 708f8bf79aefbfe8ee62f4fa68561059be0372d2 Template:Excerpt/styles.css 10 1771 2568 2022-01-20T21:29:44Z wikipedia>Sophivorus 0 text text/plain /* {{pp-template}} */ .excerpt-hat .mw-editsection-like { font-style: normal; } f1ab1e416ec88950818972ed770862228ae64106 Module:Excerpt/portals 828 1768 2562 2022-06-25T16:30:00Z wikipedia>Sophivorus 0 Remove deprecation notice, see [[Module talk:Excerpt slideshow#Why use Module:Excerpt/portals?]] Scribunto text/plain -- ATTENTION ! -- Prefer Module:Excerpt whenever possible -- Name of the category to track content pages with errors local errorCategory = "Articles with broken excerpts" -- Error messages local errorMessages = { prefix = "Excerpt error: ", noPage = "No page given", pageNotFound = "Page '%s' not found", leadEmpty = "Lead section is empty", sectionEmpty = "Section '%s' is empty", sectionNotFound = "Section '%s' not found", fragmentEmpty = "Fragment '%s' is empty", fragmentNotFound = "Fragment '%s' not found" } -- Regular expressions to match all aliases of the file namespace local fileNamespaces = { "[Ff]ile", "[Ii]mage" } -- Regular expressions to match all image parameters local imageParams = { {"thumb", "thumbnail", "frame", "framed", "frameless"}, {"right", "left", "center", "none"}, {"baseline", "middle", "sub", "super", "text-top", "text-bottom", "top", "bottom"} } -- Regular expressions to match all infobox parameters for image captions local captionParams = { "[^=|]*[Cc]aption[^=|]*", "[^=|]*[Ll]egend[^=|]*" } -- Regular expressions to match all inline templates that are undesirable in excerpts local unwantedInlineTemplates = { "[Ee]fn", "[Ee]fn%-[lu][arg]", "[Ee]fn [%a ]-", "[Ee]l[mn]", "[Rr]p?", "[Ss]fn[bmp]", "[Ss]f[bn]", "[Nn]ote[Tt]ag", "#[Tt]ag:%s*[Rr]ef", "[Rr]efn?", "[CcDd]n", "[Cc]itation[%- _]needed", "[Dd]isambiguation needed", "[Ff]eatured article", "[Gg]ood article", "[Dd]ISPLAYTITLE", "[Ss]hort[ _]+description", "[Cc]itation", "[Cc]ite[%- _]+[%w_%s]-", "[Cc]oor[%w_%s]-", "[Uu]?n?[Rr]eliable source[%?%w_%s]-", "[Rr]s%??", "[Vv]c", "[Vv]erify credibility", "[Bb]y[ _]*[Ww]ho[m]*%??", "[Ww]ikisource[ -_]*multi", "[Ii]nflation[ _/-]*[Ff]n", "[Bb]iblesource", -- aliases for Clarification needed "[Cc]f[ny]", "[Cc]larification[ _]+inline", "[Cc]larification[%- _]*needed", "[Cc]larification", "[Cc]larify%-inline", "[Cc]larify%-?me", "[Cc]larify[ _]+inline", "[Cc]larify", "[Cc]LARIFY", "[Cc]onfusing%-inline", "[Cc]onfusing%-short", "[Ee]xplainme", "[Hh]uh[ _]*%??", "[Ww]hat%?", "[Ii]nline[ _]+[Uu]nclear", "[Ii]n[ _]+what[ _]+sense", "[Oo]bscure", "[Pp]lease[ _]+clarify", "[Uu]nclear[ _]+inline", "[Ww]hat's[ _]+this%?", "[Gg]eoQuelle", "[Nn]eed[s]+[%- _]+[Ii][Pp][Aa]", "[Ii]PA needed", -- aliases for Clarification needed lead "[Cc]itation needed %(?lea?de?%)?", "[Cc]nl", "[Ff]act %(?lea?de?%)?", "[Ll]ead citation needed", "[Nn]ot in body", "[Nn]ot verified in body", -- Primary source etc. "[Pp]s[ci]", "[Nn]psn", "[Nn]on%-primary[ _]+source[ _]+needed", "[Ss]elf%-published[%w_%s]-", "[Uu]ser%-generated[%w_%s]-", "[Pp]rimary source[%w_%s]-", "[Ss]econdary source[%w_%s]-", "[Tt]ertiary source[%w_%s]-", "[Tt]hird%-party[%w_%s]-", -- aliases for Disambiguation (page) and similar "[Bb]egriffsklärung", "[Dd][Aa][Bb]", "[Dd]big", "[%w_%s]-%f[%w][Dd]isam[%w_%s]-", "[Hh][Nn][Dd][Ii][Ss]", -- aliases for Failed verification "[Bb]adref", "[Ff]aile?[ds] ?[rv][%w_%s]-", "[Ff][Vv]", "[Nn][Ii]?[Cc][Gg]", "[Nn]ot ?in ?[crs][%w_%s]-", "[Nn]ot specifically in source", "[Vv]erification[%- _]failed", -- aliases for When "[Aa]s[ _]+of[ _]+when%??", "[Aa]s[ _%-]+of%??", "[Cc]larify date", "[Dd]ate[ _]*needed", "[Nn]eeds?[ _]+date", "[Rr]ecently", "[Ss]ince[ _]+when%??", "[Ww]HEN", "[Ww]hen%??", -- aliases for Update "[Nn]ot[ _]*up[ _]*to[ _]*date","[Oo]u?[Tt][Dd]","[Oo]ut[%- _]*o?f?[%- _]*dated?", "[Uu]pdate", "[Uu]pdate[ _]+sect", "[Uu]pdate[ _]+Watch", -- aliases for Pronunciation needed "[Pp]ronunciation%??[%- _]*n?e?e?d?e?d?", "[Pp]ronounce", "[Rr]equested[%- _]*pronunciation", "[Rr]e?q?pron", "[Nn]eeds[%- _]*pronunciation", -- Chart, including Chart/start etc. "[Cc]hart", "[Cc]hart/[%w_%s]-", -- Cref and others "[Cc]ref2?", "[Cc]note", -- Explain and others "[Ee]xplain", "[Ff]urther[ ]*explanation[ ]*needed", "[Ee]laboration[ ]*needed", "[Ee]xplanation[ ]*needed", -- TOC templates "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Tt][Oo][Cc][8]*[5]*", "[Tt][Oo][Cc]", "09[Aa][Zz]", "[Tt][Oo][Cc][ ]*[Cc][Oo][Mm][Pp][Aa][Cc][Tt]", "[Tt][Oo][Cc][ ]*[Ss][Mm][Aa][Ll][Ll]", "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Aa][Ll][Pp][Hh][Aa][Bb][Ee][Tt][Ii][Cc][ _]*[Tt][Oo][Cc]", "DEFAULTSORT:.-", "[Oo]ne[ _]+source", "[Cc]ontains[ _]+special[ _]+characters", "[Ii]nfobox[ _]+Chinese" } -- Regular expressions to match all block templates that are desirable in excerpts local wantedBlockTemplates = { "[Bb]asketball[ _]roster[ _]header", "[Cc]abinet[ _]table[^|}]*", "[Cc]hart[^|}]*", "[Cc]lear", "[Cc]ol[^|}]*", -- all column templates "COVID-19[ _]pandemic[ _]data[^|}]*", "[Cc]ycling[ _]squad[^|}]*", "[Dd]ynamic[ _]list", "[Ee]lection[ _]box[^|}]*", "[Gg]allery", "[Gg]raph[^|}]*", "[Hh]idden", "[Hh]istorical[ _]populations", "[Ll]egend[ _]inline", "[Pp]lainlist", "[Pp]layer[^|}]*", "[Ss]eries[ _]overview", "[Ss]ide[ _]box", "[Ss]witcher", "[Tt]ree[ _]chart[^|}]*", "[Tt]elevision[ _]ratings[ _]graph" } local yesno = require('Module:Yesno') local p = {} -- Helper function to test for truthy and falsy values local function is(value) if not value or value == "" or value == "0" or value == "false" or value == "no" then return false end return true end -- Error handling function -- Throws a Lua error or returns an empty string if error reporting is disabled errors = true -- show errors by default local function luaError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) error(message, 2) end -- Error handling function -- Returns a wiki friendly error or an empty string if error reporting is disabled local function wikiError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) message = errorMessages.prefix .. message if mw.title.getCurrentTitle().isContentPage then local errorCategory = mw.title.new(errorCategory, 'Category') if errorCategory then message = message .. '[[' .. errorCategory.prefixedText .. ']]' end end message = mw.html.create('div'):addClass('error'):wikitext(message) return message end -- Helper function to match from a list regular expressions -- Like so: match pre..list[1]..post or pre..list[2]..post or ... local function matchAny(text, pre, list, post, init) local match = {} for i = 1, #list do match = { mw.ustring.match(text, pre .. list[i] .. post, init) } if match[1] then return unpack(match) end end return nil end -- Helper function to convert imagemaps into standard images local function convertImageMap(imagemap) local image = matchAny(imagemap, "[>\n]%s*", fileNamespaces, "[^\n]*") if image then return "<!--imagemap-->[[" .. mw.ustring.gsub(image, "[>\n]%s*", "", 1) .. "]]" else return "" -- remove entire block if image can't be extracted end end -- Helper function to convert a comma-separated list of numbers or min-max ranges into a list of booleans -- For example: "1,3-5" to {1=true,2=false,3=true,4=true,5=true} local function numberFlags(str) if not str then return {} end local flags = {} local ranges = mw.text.split(str, ",") -- parse ranges: "1,3-5" to {"1","3-5"} for _, r in pairs(ranges) do local min, max = mw.ustring.match(r, "^%s*(%d+)%s*[-–—]%s*(%d+)%s*$") -- "3-5" to min=3 max=5 if not max then min, max = mw.ustring.match(r, "^%s*((%d+))%s*$") end -- "1" to min=1 max=1 if max then for p = min, max do flags[p] = true end end end return flags end -- Helper function to convert template arguments into an array of arguments fit for get() local function parseArgs(frame) local args = {} for key, value in pairs(frame:getParent().args) do args[key] = value end for key, value in pairs(frame.args) do args[key] = value end -- args from a Lua call have priority over parent args from template args.paraflags = numberFlags(args["paragraphs"] or "") -- parse paragraphs: "1,3-5" to {"1","3-5"} args.fileflags = numberFlags(args["files"] or "") -- parse file numbers return args end -- simulate {{Airreg}} without the footnote, given "N|485US|," or similar local function airreg(p) local s = mw.text.split(p, "%s*|%s*") if s[1] ~= "N" and s[1] ~= "HL" and s[1] ~= "JA" then s[1]=s[1] .. "-" end return table.concat(s, "") end -- Helper function to remove unwanted templates and pseudo-templates such as #tag:ref and DEFAULTSORT local function stripTemplate(t) -- If template is unwanted then return "" (gsub will replace by nothing), else return nil (gsub will keep existing string) if matchAny(t, "^{{%s*", unwantedInlineTemplates, "%s*%f[|}]") then return "" end -- If template is wanted but produces an unwanted reference then return the string with |Note=, |ref or |shortref removed local noRef = mw.ustring.gsub(t, "|%s*Note%s*=.-%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*ref%s*%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*shortref%s*%f[|}]", "") -- If a wanted template has unwanted nested templates, purge them too noRef = mw.ustring.sub(noRef, 1, 2) .. mw.ustring.gsub(mw.ustring.sub(noRef, 3), "%b{}", stripTemplate) -- Replace {{audio}} by its text parameter: {{Audio|Foo.ogg|Bar}} → Bar noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]udio.-|.-|(.-)%f[|}].*", "%1") -- Replace {{Nihongo foot}} by its text parameter: {{Nihongo foot|English|英語|eigo}} → English noRef = mw.ustring.gsub(noRef, "^{{%s*[Nn]ihongo[ _]+foot%s*|(.-)%f[|}].*", "%1") -- Replace {{Airreg}} by its text parameter: {{Airreg|N|485US|,}} → N485US, noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]irreg%s*|%s*(.-)}}", airreg) if noRef ~= t then return noRef end return nil -- not an unwanted template: keep end -- Get a page's content, following redirects -- Also returns the page name, or the target page name if a redirect was followed, or false if no page found -- For file pages, returns the content of the file description page local function getContent(page) local title = mw.title.new(page) if not title then return false, false end local target = title.redirectTarget if target then title = target end return title:getContent(), title.prefixedText end -- Get the tables only local function getTables(text, options) local tables = {} for candidate in mw.ustring.gmatch(text, "%b{}") do if mw.ustring.sub(candidate, 1, 2) == '{|' then table.insert(tables, candidate) end end return table.concat(tables, '\n') end -- Get the lists only local function getLists(text, options) local lists = {} for list in mw.ustring.gmatch(text, "\n[*#][^\n]+") do table.insert(lists, list) end return table.concat(lists, '\n') end -- Check image for suitability local function checkImage(image) local page = matchAny(image, "", fileNamespaces, "%s*:[^|%]]*") -- match File:(name) or Image:(name) if not page then return false end -- Limit to image types: .gif, .jpg, .jpeg, .png, .svg, .tiff, .xcf (exclude .ogg, audio, etc.) local fileTypes = {"[Gg][Ii][Ff]", "[Jj][Pp][Ee]?[Gg]", "[Pp][Nn][Gg]", "[Ss][Vv][Gg]", "[Tt][Ii][Ff][Ff]", "[Xx][Cc][Ff]"} if not matchAny(page, "%.", fileTypes, "%s*$") then return false end -- Check the local wiki local fileDescription, fileTitle = getContent(page) -- get file description and title after following any redirect if not fileTitle or fileTitle == "" then return false end -- the image doesn't exist -- Check Commons if not fileDescription or fileDescription == "" then local frame = mw.getCurrentFrame() fileDescription = frame:preprocess("{{" .. fileTitle .. "}}") end -- Filter non-free images if not fileDescription or fileDescription == "" or mw.ustring.match(fileDescription, "[Nn]on%-free") then return false end return true end -- Attempt to parse [[File:...]] or [[Image:...]], either anywhere (start=false) or at the start only (start=true) local function parseImage(text, start) local startre = "" if start then startre = "^" end -- a true flag restricts search to start of string local image = matchAny(text, startre .. "%[%[%s*", fileNamespaces, "%s*:.*") -- [[File: or [[Image: ... if image then image = mw.ustring.match(image, "%b[]%s*") -- matching [[...]] to handle wikilinks nested in caption end return image end -- Parse a caption, which ends at a | (end of parameter) or } (end of infobox) but may contain nested [..] and {..} local function parseCaption(caption) if not caption then return nil end local length = mw.ustring.len(caption) local position = 1 while position <= length do local linkStart, linkEnd = mw.ustring.find(caption, "%b[]", position) linkStart = linkStart or length + 1 -- avoid comparison with nil when no link local templateStart, templateEnd = mw.ustring.find(caption, "%b{}", position) templateStart = templateStart or length + 1 -- avoid comparison with nil when no template local argEnd = mw.ustring.find(caption, "[|}]", position) or length + 1 if linkStart < templateStart and linkStart < argEnd then position = linkEnd + 1 -- skip wikilink elseif templateStart < argEnd then position = templateEnd + 1 -- skip template else -- argument ends before the next wikilink or template return mw.ustring.sub(caption, 1, argEnd - 1) end end return caption -- No terminator found: return entire caption end -- Attempt to construct a [[File:...]] block from {{infobox ... |image= ...}} local function argImage(text) local token = nil local hasNamedArgs = mw.ustring.find(text, "|") and mw.ustring.find(text, "=") if not hasNamedArgs then return nil end -- filter out any template that obviously doesn't contain an image -- ensure image map is captured text = mw.ustring.gsub(text, '<!%-%-imagemap%-%->', '|imagemap=') -- find all images local hasImages = false local images = {} local captureFrom = 1 while captureFrom < mw.ustring.len(text) do local argname, position, image = mw.ustring.match(text, "|%s*([^=|]-[Ii][Mm][Aa][Gg][Ee][^=|]-)%s*=%s*()(.*)", captureFrom) if image then -- ImageCaption=, image_size=, image_upright=, etc. do not introduce an image local lcArgName = mw.ustring.lower(argname) if mw.ustring.find(lcArgName, "caption") or mw.ustring.find(lcArgName, "size") or mw.ustring.find(lcArgName, "upright") then image = nil end end if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|]-[Pp][Hh][Oo][Tt][Oo][^=|]-%s*=%s*()(.*)", captureFrom) if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|{}]-%s*=%s*()%[?%[?([^|{}]*%.%a%a%a%a?)%s*%f[|}]", captureFrom) if image then hasImages = true if not images[position] then images[position] = image end captureFrom = position else captureFrom = mw.ustring.len(text) end end if not hasImages then return nil end -- find all captions local captions = {} captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, caption = matchAny(text, "|%s*", captionParams, "%s*=%s*()([^\n]+)", captureFrom) if caption then -- extend caption to parse "| caption = Foo {{Template\n on\n multiple lines}} Bar\n" local bracedCaption = mw.ustring.match(text, "^[^\n]-%b{}[^\n]+", position) if bracedCaption and bracedCaption ~= "" then caption = bracedCaption end caption = mw.text.trim(caption) local captionStart = mw.ustring.sub(caption, 1, 1) if captionStart == '|' or captionStart == '}' then caption = nil end end if caption then -- find nearest image, and use same index for captions table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not captions[i] then captions[i] = parseCaption(caption) end end end captureFrom = position else captureFrom = mw.ustring.len(text) end end -- find all alt text local altTexts = {} for position, altText in mw.ustring.gmatch(text, "|%s*[Aa][Ll][Tt]%s*=%s*()([^\n]*)") do if altText then -- altText is terminated by }} or |, but first skip any matched [[...]] and {{...}} local lookFrom = math.max( -- find position after whichever comes last: start of string, end of last ]] or end of last }} mw.ustring.match(altText, ".*{%b{}}()") or 1, -- if multiple {{...}}, .* consumes all but one, leaving the last for %b mw.ustring.match(altText, ".*%[%b[]%]()") or 1) local length = mw.ustring.len(altText) local afterText = math.min( -- find position after whichever comes first: end of string, }} or | mw.ustring.match(altText, "()}}", lookFrom) or length+1, mw.ustring.match(altText, "()|", lookFrom) or length+1) altText = mw.ustring.sub(altText, 1, afterText-1) -- chop off |... or }}... which is not part of [[...]] or {{...}} altText = mw.text.trim(altText) local altTextStart = mw.ustring.sub(altText, 1, 1) if altTextStart == '|' or altTextStart == '}' then altText = nil end end if altText then -- find nearest image, and use same index for altTexts table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not altTexts[i] then altTexts[i] = altText end end end end end -- find all image sizes local imageSizes = {} for position, imageSizeMatch in mw.ustring.gmatch(text, "|%s*[Ii][Mm][Aa][Gg][Ee][ _]?[Ss][Ii][Zz][Ee]%s*=%s*()([^}|\n]*)") do local imageSize = mw.ustring.match(imageSizeMatch, "=%s*([^}|\n]*)") if imageSize then imageSize = mw.text.trim(imageSize ) local imageSizeStart = mw.ustring.sub(imageSize, 1, 1) if imageSizeStart == '|' or imageSizeStart == '}' then imageSize = nil end end if imageSize then -- find nearest image, and use same index for imageSizes table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not imageSizes[i] then imageSizes[i] = imageSize end end end end end -- sort the keys of the images table (in a table sequence), so that images can be iterated over in order local keys = {} for key, val in pairs(images) do table.insert(keys, key) end table.sort(keys) -- add in relevant optional parameters for each image: caption, alt text and image size local imageTokens = {} for _, index in ipairs(keys) do local image = images[index] local token = parseImage(image, true) -- look for image=[[File:...]] etc. if not token then image = mw.ustring.match(image, "^[^}|\n]*") -- remove later arguments token = "[[" -- Add File: unless name already begins File: or Image: if not matchAny(image, "^", fileNamespaces, "%s*:") then token = token .. "File:" end token = token .. image local caption = captions[index] if caption and mw.ustring.match(caption, "%S") then token = token .. "|" .. caption end local alt = altTexts[index] if alt then token = token .. "|alt=" .. alt end local image_size = imageSizes[index] if image_size and mw.ustring.match(image_size, "%S") then token = token .. "|" .. image_size end token = token .. "]]" end token = mw.ustring.gsub(token, "\n","") .. "\n" table.insert(imageTokens, token) end return imageTokens end local function modifyImage(image, fileArgs) if fileArgs then for _, filearg in pairs(mw.text.split(fileArgs, "|")) do -- handle fileArgs=left|border etc. local fa = mw.ustring.gsub(filearg, "=.*", "") -- "upright=0.75" → "upright" local group = {fa} -- group of "border" is ["border"]... for _, g in pairs(imageParams) do for _, a in pairs(g) do if fa == a then group = g end -- ...but group of "left" is ["right", "left", "center", "none"] end end for _, a in pairs(group) do image = mw.ustring.gsub(image, "|%s*" .. a .. "%f[%A]%s*=[^|%]]*", "") -- remove "|upright=0.75" etc. image = mw.ustring.gsub(image, "|%s*" .. a .. "%s*([|%]])", "%1") -- replace "|left|" by "|" etc. end image = mw.ustring.gsub(image, "([|%]])", "|" .. filearg .. "%1", 1) -- replace "|" by "|left|" etc. end end image = mw.ustring.gsub(image, "(|%s*%d*x?%d+%s*px%s*.-)|%s*%d*x?%d+%s*px%s*([|%]])", "%1%2") -- double px args return image end -- a basic parser to trim down extracted wikitext -- @param text : Wikitext to be processed -- @param options : A table of options... -- options.paraflags : Which number paragraphs to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true}. If not present, all paragraphs will be kept. -- options.fileflags : table of which files to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true} -- options.fileargs : args for the [[File:]] syntax, such as 'left' -- options.filesOnly : only return the files and not the prose local function parse(text, options) local allParagraphs = true -- keep all paragraphs? if options.paraflags then if type(options.paraflags) ~= "table" then options.paraflags = numberFlags(options.paraflags) end for _, v in pairs(options.paraflags) do if v then allParagraphs = false end -- if any para specifically requested, don't keep all end end if is(options.filesOnly) then allParagraphs = false options.paraflags = {} end local maxfile = 0 -- for efficiency, stop checking images after this many have been found if options.fileflags then if type(options.fileflags) ~= "table" then options.fileflags = numberFlags(options.fileflags) end for k, v in pairs(options.fileflags) do if v and k > maxfile then maxfile = k end -- set maxfile = highest key in fileflags end end local fileArgs = options.fileargs and mw.text.trim(options.fileargs) if fileArgs == '' then fileArgs = nil end local leadStart = nil -- have we found some text yet? local t = "" -- the stripped down output text local fileText = "" -- output text with concatenated [[File:Foo|...]]\n entries local files = 0 -- how many images so far local paras = 0 -- how many paragraphs so far local startLine = true -- at the start of a line (no non-spaces found since last \n)? text = mw.ustring.gsub(text,"^%s*","") -- remove initial white space -- Add named files local f = options.files if f and mw.ustring.match(f, "[^%d%s%-,]") then -- filename rather than number list f = mw.ustring.gsub(f, "^%s*File%s*:%s*", "", 1) f = mw.ustring.gsub(f, "^%s*Image%s*:%s*", "", 1) f = "[[File:" .. f .. "]]" f = modifyImage(f, "thumb") f = modifyImage(f, fileArgs) if checkImage(f) then fileText = fileText .. f .. "\n" end end repeat -- loop around parsing a template, image or paragraph local token = mw.ustring.match(text, "^%b{}%s*") or false -- {{Template}} or {| Table |} if not leadStart and not token then token = mw.ustring.match(text, "^%b<>%s*%b{}%s*") end -- allow <tag>{{template}} before lead has started local line = mw.ustring.match(text, "[^\n]*") if token and line and mw.ustring.len(token) < mw.ustring.len(line) then -- template is followed by text (but it may just be other templates) line = mw.ustring.gsub(line, "%b{}", "") -- remove all templates from this line line = mw.ustring.gsub(line, "%b<>", "") -- remove all HTML tags from this line -- if anything is left, other than an incomplete further template or an image, keep the template: it counts as part of the line if mw.ustring.find(line, "%S") and not matchAny(line, "^%s*", { "{{", "%[%[%s*[Ff]ile:", "%[%[%s*[Ii]mage:" }, "") then token = nil end end if token then -- found a template which is not the prefix to a line of text if is(options.keepTables) and mw.ustring.sub(token, 1, 2) == '{|' then t = t .. token -- keep tables elseif mw.ustring.sub(token, 1, 3) == '{{#' then t = t .. token -- keep parser functions elseif leadStart then -- lead has already started, so keep the template within the text, unless it's a whole line (navbox etc.) if not is(options.filesOnly) and not startLine then t = t .. token end elseif matchAny(token, "^{{%s*", wantedBlockTemplates, "%s*%f[|}]") then t = t .. token -- keep wanted block templates elseif files < maxfile then -- discard template, but if we are still collecting images... local images = argImage(token) or {} if not images then local image = parseImage(token, false) -- look for embedded [[File:...]], |image=, etc. if image then table.insert(images, image) end end for _, image in ipairs(images) do if files < maxfile and checkImage(image) then -- if image is found and qualifies (not a sound file, non-free, etc.) files = files + 1 -- count the file, whether displaying it or not if options.fileflags and options.fileflags[files] then -- if displaying this image image = modifyImage(image, "thumb") image = modifyImage(image, fileArgs) fileText = fileText .. image end end end end else -- the next token in text is not a template token = parseImage(text, true) if token then -- the next token in text looks like an image if files < maxfile and checkImage(token) then -- if more images are wanted and this is a wanted image files = files + 1 if options.fileflags and options.fileflags[files] then local image = token -- copy token for manipulation by adding |right etc. without changing the original image = modifyImage(image, fileArgs) fileText = fileText .. image end end else -- got a paragraph, which ends at a file, image, blank line or end of text local afterEnd = mw.ustring.len(text) + 1 local blankPosition = mw.ustring.find(text, "\n%s*\n") or afterEnd -- position of next paragraph delimiter (or end of text) local endPosition = math.min( -- find position of whichever comes first: [[File:, [[Image: or paragraph delimiter mw.ustring.find(text, "%[%[%s*[Ff]ile%s*:") or afterEnd, mw.ustring.find(text, "%[%[%s*[Ii]mage%s*:") or afterEnd, blankPosition) token = mw.ustring.sub(text, 1, endPosition-1) if blankPosition < afterEnd and blankPosition == endPosition then -- paragraph ends with a blank line token = token .. mw.ustring.match(text, "\n%s*\n", blankPosition) end local isHatnote = not(leadStart) and mw.ustring.sub(token, 1, 1) == ':' if not isHatnote then leadStart = leadStart or mw.ustring.len(t) + 1 -- we got a paragraph, so mark the start of the lead section paras = paras + 1 if allParagraphs or (options.paraflags and options.paraflags[paras]) then t = t .. token end -- add if this paragraph wanted end end -- of "else got a paragraph" end -- of "else not a template" if token then text = mw.ustring.sub(text, mw.ustring.len(token)+1) end -- remove parsed token from remaining text startLine = mw.ustring.find(token, "\n%s*$") -- will the next token be the first non-space on a line? until not text or text == "" or not token or token == "" -- loop until all text parsed text = mw.ustring.gsub(t, "\n+$", "") -- remove trailing line feeds, so "{{Transclude text excerpt|Foo}} more" flows on one line return fileText .. text end local function cleanupText(text, options) text = mw.ustring.gsub(text, "<!%-%-.-%-%->","") -- remove HTML comments text = mw.ustring.gsub(text, "<[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-</[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove noinclude bits if mw.ustring.find(text, "[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]") then -- avoid expensive search if possible text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text between onlyinclude sections text = mw.ustring.gsub(text, "^.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text before first onlyinclude section text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.*", "") -- remove text after last onlyinclude section end if not is(options.keepSubsections) then text = mw.ustring.gsub(text, "\n==.*","") -- remove first ==Heading== and everything after it text = mw.ustring.gsub(text, "^==.*","") -- ...even if the lead is empty end if not is(options.keepRefs) then text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]-/%s*>", "") -- remove refs cited elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff].->.-<%s*/%s*[Rr][Ee][Ff]%s*>", "") -- remove refs text = mw.ustring.gsub(text, "%b{}", stripTemplate) -- remove unwanted templates such as references end text = mw.ustring.gsub(text, "<%s*[Ss][Cc][Oo][Rr][Ee].->.-<%s*/%s*[Ss][Cc][Oo][Rr][Ee]%s*>", "") -- remove musical scores text = mw.ustring.gsub(text, "<%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp].->.-<%s*/%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp]%s*>", convertImageMap) -- convert imagemaps into standard images text = mw.ustring.gsub(text, "%s*{{%s*[Tt][Oo][Cc].-}}", "") -- remove most common tables of contents text = mw.ustring.gsub(text, "%s*__[A-Z]*TOC__", "") -- remove TOC behavior switches text = mw.ustring.gsub(text, "\n%s*{{%s*[Pp]p%-.-}}", "\n") -- remove protection templates text = mw.ustring.gsub(text, "%s*{{[^{|}]*[Ss]idebar%s*}}", "") -- remove most sidebars text = mw.ustring.gsub(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}", "") -- remove most stub templates text = mw.ustring.gsub(text, "%s*%[%[%s*:?[Cc]ategory:.-%]%]", "") -- remove categories text = mw.ustring.gsub(text, "^:[^\n]+\n","") -- remove DIY hatnote indented with a colon return text end -- Parse a ==Section== from a page local function getSection(text, section, mainOnly) local escapedSection = mw.ustring.gsub(mw.uri.decode(section), "([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1") -- %26 → & etc, then ^ → %^ etc. local level, content = mw.ustring.match(text .. "\n", "\n(==+)%s*" .. escapedSection .. "%s*==.-\n(.*)") if not content then return luaError("sectionNotFound", section) end local nextSection if mainOnly then nextSection = "\n==.*" -- Main part of section terminates at any level of header else nextSection = "\n==" .. mw.ustring.rep("=?", #level - 2) .. "[^=].*" -- "===" → "\n===?[^=].*", matching "==" or "===" but not "====" end content = mw.ustring.gsub(content, nextSection, "") -- remove later sections with headings at this level or higher if mw.ustring.match(content, "^%s*$") then return luaError("sectionEmpty", section) end return content end -- Parse a <section begin="Name of the fragment"> -- @todo Implement custom parsing of fragments rather than relying on #lst local function getFragment(page, fragment) local frame = mw.getCurrentFrame() local text = frame:callParserFunction('#lst', page, fragment) if mw.ustring.match(text, "^%s*$") then return luaError("fragmentEmpty", fragment) end return text end -- Remove unmatched <tag> or </tag> tags local function fixTags(text, tag) local startCount = 0 for i in mw.ustring.gmatch(text, "<%s*" .. tag .. "%f[^%w_].->") do startCount = startCount + 1 end local endCount = 0 for i in mw.ustring.gmatch(text, "<%s*/" .. tag .. "%f[^%w_].->") do endCount = endCount + 1 end if startCount > endCount then -- more <tag> than </tag>: remove the last few <tag>s local i = 0 text = mw.ustring.gsub(text, "<%s*" .. tag .. "%f[^%w_].->", function(t) i = i + 1 if i > endCount then return "" else return nil end end) -- "end" here terminates the anonymous replacement function(t) passed to gsub elseif endCount > startCount then -- more </tag> than <tag>: remove the first few </tag>s text = mw.ustring.gsub(text, "<%s*/" .. tag .. "%f[^%w_].->", "", endCount - startCount) end return text end local function fixTemplates(text) repeat -- hide matched {{template}}s including nested templates local t = text text = mw.ustring.gsub(text, "{(%b{})}", "\27{\27%1\27}\27") -- {{sometemplate}} → E{Esometemplate}E}E where E represents escape text = mw.ustring.gsub(text, "(< *math[^>]*>[^<]-)}}(.-< */math *>)", "%1}\27}\27%2") -- <math>\{sqrt\{hat{x}}</math> → <math>\{sqrt\{hat{x}E}E</math> until text == t text = text.gsub(text, "([{}])%1[^\27].*", "") -- remove unmatched {{, }} and everything thereafter, avoiding }E}E etc. text = text.gsub(text, "([{}])%1$", "") -- remove unmatched {{, }} at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: E{E{ → {{, etc. return text end local function fixLinks(text) repeat -- hide matched [[wikilink]]s including nested links like [[File:Example.jpg|Some [[nested]] link.]] local t = text text = mw.ustring.gsub(text, "%[(%b[])%]", "\27[\27%1\27]\27") until text == t text = text.gsub(text, "([%[%]])%1[^\27].*", "") -- remove unmatched [[ or ]] and everything thereafter, avoiding ]E]E etc. text = text.gsub(text, "([%[%]])%1$", "") -- remove unmatched [[ or ]] at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: ]E]E → ]], etc. return text end -- Replace the first call to each reference defined outside of the text for the full reference, to prevent undefined references -- Then prefix the page title to the reference names to prevent conflicts -- that is, replace <ref name="Foo"> for <ref name="Title of the article Foo"> -- and also <ref name="Foo" /> for <ref name="Title of the article Foo" /> -- also remove reference groups: <ref name="Foo" group="Bar"> for <ref name="Title of the article Foo"> -- and <ref group="Bar"> for <ref> -- @todo The current regex may fail in cases with both kinds of quotes, like <ref name="Darwin's book"> local function fixRefs(text, page, full) if not full then full = getContent(page) end local refNames = {} local refName local refBody local position = 1 while position < mw.ustring.len(text) do refName, position = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>]+)[\"']?[^>]*/%s*>()", position) if refName then refName = mw.text.trim(refName) if not refNames[refName] then -- make sure we process each ref name only once table.insert(refNames, refName) refName = mw.ustring.gsub(refName, "[%^%$%(%)%.%[%]%*%+%-%?%%]", "%%%0") -- escape special characters refBody = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if not refBody then -- the ref body is not in the excerpt refBody = mw.ustring.match(full, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^/>]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if refBody then -- the ref body was found elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>]*/?%s*>", refBody, 1) end end end else position = mw.ustring.len(text) end end text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>/]+)[\"']?[^>/]*(/?)%s*>", '<ref name="' .. page .. ' %1" %2>') text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*group%s*=%s*[\"']?[^\"'>/]+[\"']%s*>", '<ref>') return text end -- Replace the bold title or synonym near the start of the article by a wikilink to the article function linkBold(text, page) local lang = mw.language.getContentLanguage() local position = mw.ustring.find(text, "'''" .. lang:ucfirst(page) .. "'''", 1, true) -- look for "'''Foo''' is..." (uc) or "A '''foo''' is..." (lc) or mw.ustring.find(text, "'''" .. lang:lcfirst(page) .. "'''", 1, true) -- plain search: special characters in page represent themselves if position then local length = mw.ustring.len(page) text = mw.ustring.sub(text, 1, position + 2) .. "[[" .. mw.ustring.sub(text, position + 3, position + length + 2) .. "]]" .. mw.ustring.sub(text, position + length + 3, -1) -- link it else -- look for anything unlinked in bold, assumed to be a synonym of the title (e.g. a person's birth name) text = mw.ustring.gsub(text, "()'''(.-'*)'''", function(a, b) if not mw.ustring.find(b, "%[") then -- if not wikilinked return "'''[[" .. page .. "|" .. b .. "]]'''" -- replace '''Foo''' by '''[[page|Foo]]''' else return nil -- instruct gsub to make no change end end, 1) -- "end" here terminates the anonymous replacement function(a, b) passed to gsub end return text end -- Main function for modules local function get(page, options) if options.errors then errors = options.errors end if not page or page == "" then return luaError("noPage") end local text page, section = mw.ustring.match(page, "([^#]+)#?([^#]*)") text, page = getContent(page) if not page then return luaError("noPage") end if not text then return luaError("pageNotFound", page) end local full = text -- save the full text for later if is(options.fragment) then text = getFragment(page, options.fragment) end if is(section) then text = getSection(text, section) end -- Strip text of all undersirables text = cleanupText(text, options) text = parse(text, options) -- Replace the bold title or synonym near the start of the article by a wikilink to the article text = linkBold(text, page) -- Remove '''bold text''' if requested if is(options.nobold) then text = mw.ustring.gsub(text, "'''", "") end -- Keep only tables if requested if is(options.tablesOnly) then text = getTables(text) end -- Keep only lists if requested if is(options.listsOnly) then text = getLists(text) end -- Seek and destroy unterminated templates, links and tags text = fixTemplates(text) text = fixLinks(text) text = fixTags(text, "div") -- Fix broken references if is(options.keepRefs) then text = fixRefs(text, page, full) end -- Add (Full article...) link if options.moreLinkText then text = text .. " ('''[[" .. page .. "|" .. options.moreLinkText .. "]]''')" end return text end -- Main invocation function for templates local function main(frame) local args = parseArgs(frame) local page = args[1] local ok, text = pcall(get, page, args) if not ok then text = errorMessages.prefix .. text if errorCategory and errorCategory ~= '' and mw.title.getCurrentTitle().isContentPage then text = text .. '[[' .. errorCategory .. ']]' end return mw.html.create('div'):addClass('error'):wikitext(text) end return frame:preprocess(text) end local function getMoreLinkText(more) local defaultText = "Full article..." -- default text, same as in [[Template:TFAFULL]] if not more or more == '' then -- nil/empty => use default return defaultText end if not yesno(more, true) then -- falsy values => suppress the link return nil end return more end -- Shared invocation function used by templates meant for portals local function portal(frame, template) local args = parseArgs(frame) errors = args['errors'] or false -- disable error reporting unless requested -- There should be at least one argument except with selected=Foo and Foo=Somepage if #args < 1 and not (template == "selected" and args[template] and args[args[template]]) then return wikiError("noPage") end -- Figure out the page to excerpt local page local candidates = {} if template == "lead" then page = args[1] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "selected" then local key = args[template] local count = #args if tonumber(key) then -- normalise article number into the range 1..#args key = key % count if key == 0 then key = count end end page = args[key] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "linked" or template == "listitem" then local source = args[1] local text, source = getContent(source) if not source then return wikiError("noPage") elseif not text then return wikiError("noPage") end local section = args.section if section then -- check relevant section only text = getSection(text, section) if not text then return wikiError("sectionNotFound", section) end end -- Replace annotated links with real links text = mw.ustring.gsub(text, "{{%s*[Aa]nnotated[ _]link%s*|%s*(.-)%s*}}", "[[%1]]") if template == "linked" then for candidate in mw.ustring.gmatch(text, "%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end else -- listitem: first wikilink on a line beginning *, :#, etc. except in "See also" or later section text = mw.ustring.gsub(text, "\n== *See also.*", "") for candidate in mw.ustring.gmatch(text, "\n:*[%*#][^\n]-%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end end elseif template == "random" then for key, value in pairs(args) do if value and type(key) == "number" then table.insert(candidates, mw.text.trim(value)) end end end -- Build an options array for the Excerpt module out of the arguments and the desired defaults local options = { errors = args['errors'] or false, fileargs = args['fileargs'], fileflags = numberFlags( args['files'] ), paraflags = numberFlags( args['paragraphs'] ), moreLinkText = getMoreLinkText(args['more'] ), keepSubsections = args['keepSubsections'], keepRefs = args['keepRefs'], nobold = args['nobold'] } -- Select a random candidate and make sure its valid local text local candidateCount = #candidates if candidateCount > 0 then local candidateKey = 1 local candidateString local candidateArgs if candidateCount > 1 then math.randomseed(os.time()) end while (not text or text == "") and candidateCount > 0 do if candidateCount > 1 then candidateKey = math.random(candidateCount) end -- pick a random candidate candidateString = candidates[candidateKey] if candidateString and candidateString ~= "" then -- We have page or [[page]] or [[page|text]], possibly followed by |opt1|opt2... page, candidateArgs = mw.ustring.match(candidateString, "^%s*(%[%b[]%])%s*|?(.*)") if page and page ~= "" then page = mw.ustring.match(page, "%[%[([^|%]]*)") -- turn [[page|text]] into page, discarding text else -- we have page or page|opt... page, candidateArgs = mw.ustring.match(candidateString, "%s*([^|]*[^|%s])%s*|?(.*)") end -- candidate arguments (even if value is "") have priority over global arguments if candidateArgs and candidateArgs ~= "" then for _, t in pairs(mw.text.split(candidateArgs, "|")) do local k, v = mw.ustring.match(t, "%s*([^=]-)%s*=(.-)%s*$") if k == 'files' then options.fileflags = numberFlags(v) elseif k == 'paragraphs' then options.paraflags = numberFlags(v) elseif k == 'more' then args.more = v else options[k] = v end end end if page and page ~= "" then local section = mw.ustring.match(page, "[^#]+#([^#]+)") -- save the section text, page = getContent(page) -- make sure the page exists if page and page ~= "" and text and text ~= "" then if args.nostubs then local isStub = mw.ustring.find(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}") if isStub then text = nil end end if section and section ~= "" then page = page .. '#' .. section -- restore the section end text = get(page, options) end end end table.remove(candidates, candidateKey) -- candidate processed candidateCount = candidateCount - 1 -- ensure that we exit the loop after all candidates are done end end if not text or text == "" then return wikiError("No valid pages found") end if args.showall then local separator = args.showall if separator == "" then separator = "{{clear}}{{hr}}" end for _, candidate in pairs(candidates) do local t = get(candidate, options) if t ~= "" then text = text .. separator .. t end end end -- Add a collapsed list of pages which might appear if args.list and not args.showall then local list = args.list if list == "" then list = "Other articles" end text = text .. "{{collapse top|title={{resize|85%|" ..list .. "}}|bg=fff}}{{hlist" for _, candidate in pairs(candidates) do if mw.ustring.match(candidate, "%S") then text = text .. "|[[" .. mw.text.trim(candidate) .. "]]" end end text = text .. "}}\n{{collapse bottom}}" end return frame:preprocess(text) end -- Old invocation function used by {{Excerpt}} local function excerpt(frame) local args = parseArgs(frame) -- Make sure the requested page exists local page = args[1] or args.article or args.source or args.page if not page then return wikiError("noPage") end local title = mw.title.new(page) if not title then return wikiError("noPage") end if title.isRedirect then title = title.redirectTarget end if not title.exists then return wikiError("pageNotFound", page) end page = title.prefixedText -- Define some useful variables local section = args[2] or args.section or mw.ustring.match(args[1], "[^#]+#([^#]+)") local tag = args.tag or 'div' -- Define the HTML elements local block = mw.html.create(tag):addClass('excerpt-block') if is(args.indicator) then block:addClass('excerpt-indicator') end local style = frame:extensionTag{ name = 'templatestyles', args = { src = 'Excerpt/styles.css' } } local hatnote if not args.nohat then if args.this then hatnote = args.this elseif args.indicator then hatnote = 'This is' elseif args.only == 'file' then hatnote = 'This file is' elseif args.only == 'file' then hatnote = 'These files are' elseif args.only == 'list' then hatnote = 'This list is' elseif args.only == 'lists' then hatnote = 'These lists are' elseif args.only == 'table' then hatnote = 'This table is' elseif args.only == 'tables' then hatnote = 'These tables are' else hatnote = 'This section is' end hatnote = hatnote .. ' an excerpt from ' if section then hatnote = hatnote .. '[[' .. page .. '#' .. section .. '|' .. page .. ' § ' .. section .. ']]' else hatnote = hatnote .. '[[' .. page .. ']]' end hatnote = hatnote .. "''" .. '<span class="mw-editsection-like plainlinks"><span class="mw-editsection-bracket">[</span>[' hatnote = hatnote .. title:fullUrl('action=edit') .. ' edit' hatnote = hatnote .. ']<span class="mw-editsection-bracket">]</span></span>' .. "''" hatnote = require('Module:Hatnote')._hatnote(hatnote, {selfref=true}) or wikiError('Error generating hatnote') end -- Build the module options out of the template arguments and the desired defaults local options = { fileflags = numberFlags( args['files'] or 1 ), paraflags = numberFlags( args['paragraphs'] ), filesOnly = is( args['only'] == 'file' or args['only'] == 'files' ), listsOnly = is( args['only'] == 'list' or args['only'] == 'lists'), tablesOnly = is( args['only'] == 'table' or args['only'] == 'tables' ), keepTables = is( args['tables'] or true ), keepRefs = is( args['references'] or true ), keepSubsections = is( args['subsections'] ), nobold = not is( args['bold'] ), fragment = args['fragment'] } -- Get the excerpt itself if section then page = page .. '#' .. section end local ok, excerpt = pcall(e.get, page, options) if not ok then return wikiError(excerpt) end excerpt = "\n" .. excerpt -- line break is necessary to prevent broken tables and lists if mw.title.getCurrentTitle().isContentPage then excerpt = excerpt .. '[[Category:Articles with excerpts]]' end excerpt = frame:preprocess(excerpt) excerpt = mw.html.create(tag):addClass('excerpt'):wikitext(excerpt) -- Combine and return the elements return block:node(style):node(hatnote):node(excerpt) end -- Entry points for templates function p.main(frame) return main(frame) end function p.wikiError(message, value) return wikiError(message, value) end function p.lead(frame) return portal(frame, "lead") end -- {{Transclude lead excerpt}} reads a randomly selected article linked from the given page function p.linked(frame) return portal(frame, "linked") end -- {{Transclude linked excerpt}} reads a randomly selected article linked from the given page function p.listitem(frame) return portal(frame, "listitem") end -- {{Transclude list item excerpt}} reads a randomly selected article listed on the given page function p.random(frame) return portal(frame, "random") end -- {{Transclude random excerpt}} reads any article (default for invoke with one argument) function p.selected(frame) return portal(frame, "selected") end -- {{Transclude selected excerpt}} reads the article whose key is in the selected= parameter function p.excerpt(frame) return excerpt(frame) end -- {{Excerpt}} transcludes part of an article into another article -- Entry points for other Lua modules function p.get(page, options) return get(page, options) end function p.getContent(page) return getContent(page) end function p.getSection(text, section) return getSection(text, section) end function p.getTables(text, options) return getTables(text, options) end function p.getLists(text, options) return getLists(text, options) end function p.parse(text, options) return parse(text, options) end function p.parseImage(text, start) return parseImage(text, start) end function p.parseArgs(frame) return parseArgs(frame) end function p.argImage(text) return argImage(text) end function p.checkImage(image) return checkImage(image) end function p.cleanupText(text, options) return cleanupText(text, options) end function p.luaError(message, value) return luaError(message, value) end function p.is(value) return is(value) end function p.numberFlags(str) return numberFlags(str) end function p.getMoreLinkText(more) return getMoreLinkText(more) end -- Entry points for backwards compatibility function p.getsection(text, section) return getSection(text, section) end function p.parseimage(text, start) return parseImage(text, start) end function p.checkimage(image) return checkImage(image) end function p.argimage(text) return argImage(text) end function p.numberflags(str) return numberFlags(str) end return p f8222047daeb45f21fbb916864349f921e3fc2bc Main Page 0 1 1 2022-08-19T07:20:26Z MediaWiki default 1 Create main page wikitext text/x-wiki __NOTOC__ == Welcome to {{SITENAME}}! == This Main Page was created automatically and it seems it hasn't been replaced yet. === For the bureaucrat(s) of this wiki === Hello, and welcome to your new wiki! Thank you for choosing Miraheze for the hosting of your wiki, we hope you will enjoy our hosting. You can immediately start working on your wiki or whenever you want. Need help? No problem! We will help you with your wiki as needed. To start, try checking out these helpful links: * [[mw:Special:MyLanguage/Help:Contents|MediaWiki guide]] (e.g. navigation, editing, deleting pages, blocking users) * [[meta:Special:MyLanguage/FAQ|Miraheze FAQ]] * [[meta:Special:MyLanguage/Request features|Request settings changes on your wiki]]. (Extensions, Skin and Logo/Favicon changes should be done through [[Special:ManageWiki]] on your wiki, see [[meta:Special:MyLanguage/ManageWiki|ManageWiki]] for more information.) ==== I still don't understand X! ==== Well, that's no problem. Even if something isn't explained in the documentation/FAQ, we are still happy to help you. You can find us here: * [[meta:Special:MyLanguage/Help center|On our own Miraheze wiki]] * On [[phab:|Phabricator]] * On [https://miraheze.org/discord Discord] * On IRC in #miraheze on irc.libera.chat ([irc://irc.libera.chat/%23miraheze direct link]; [https://web.libera.chat/?channel=#miraheze webchat]) === For visitors of this wiki === Hello, the default Main Page of this wiki (this page) has not yet been replaced by the bureaucrat(s) of this wiki. The bureaucrat(s) might still be working on a Main Page, so please check again later! 21236ac3f8d65e5563b6da6b70815ca6bf1e6616 9 1 2022-08-19T18:01:55Z S30Z 2 wikitext text/x-wiki __NOTOC__ == Welcome to the official Southwest Florida Wiki! == [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! === Quick Links === [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] === For visitors of this wiki === Hello. This is a very early work in progress. 9fdea94aceb7aa3a6ad52d0aa9823c6546f7b046 MediaWiki:Common.css 8 2 2 2022-08-19T17:34:35Z S30Z 2 added basic infotable css css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #003aff; width: 25%; } .infotable th { text-align: left; } 8814c486621f91f2c8fd8ce2c9830d9767ffaffc 33 2 2022-08-19T23:44:54Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } 3264c3971d20e5ab634b2e79a37071d93442f88a 2021 Mazday3 0 3 3 2022-08-19T17:35:00Z S30Z 2 Created page with "{| class="wikitable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazd..." wikitext text/x-wiki {| class="wikitable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 474cb1378c854000dab28886f1aab71f955de37f 4 3 2022-08-19T17:52:26Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} ==About== info about the mazda3 blah blah blah ==Performance== {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|3}}} |- ! Weight | {{{weight|also 3}}} |- ! Top speed | {{{top speed|3 yet again}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] aaa4d3796892e6cf414df457dd8dfb407060aa78 8 4 2022-08-19T17:55:49Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} ==About== info about the mazda3 blah blah blah ==Performance== probably say something about the performance here {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|3}}} |- ! Weight | {{{weight|also 3}}} |- ! Top speed | {{{top speed|3 yet again}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 3583fa33d012581c73529d81027bd666f7894d22 10 8 2022-08-19T18:07:10Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} ==About== info about the mazda3 blah blah blah ==Performance== probably say something about the performance here {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|3}}} |- ! Weight | {{{weight|also 3}}} |- ! Top speed | {{{top speed|3 yet again}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] f9096c46bd3ecd8c6ffeb2fa3eeb66b499375bcd 16 10 2022-08-19T22:15:27Z S30Z 2 /* Performance */ wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} ==About== info about the mazda3 blah blah blah ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] eafd13a871d25f9ba3417cb65328ad08ade87e77 17 16 2022-08-19T22:18:24Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday 3}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not a Mazday 3.}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} ==About== The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 9ced818bb3cf51a71ef5dc39fdc35687415e2683 19 17 2022-08-19T22:22:24Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2021 Mazday3}}} |- ! colspan="2" | [[File:{{{img|Mazday3 Front.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2021 Mazday3 ingame}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |} ==About== The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 28487e7374e4b2f69fdf3262c9ad98f2378014aa 21 19 2022-08-19T22:26:49Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2021 Mazday3}}} |- ! colspan="2" | [[File:{{{img|Mazday3 Front.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2021 Mazday3 ingame}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |}The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} == Gallery == <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] f94a93bbb1d157b8d513fb0e13a68694fe8bf0ac 22 21 2022-08-19T22:35:10Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2021 Mazday3}}} |- ! colspan="2" | [[File:{{{img|Mazday3 Front.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2021 Mazday3 ingame}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |}The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} {| class="wikitable" ! colspan="2" | {{{subj|Maximum Performance}}} |- ! Horsepower | {{{horsepower|1,133 HP}}} |- ! Torque | {{{torque|1,073 LB-FT}}} |- ! Weight | {{{weight|2,883 LB}}} |- ! Top speed | {{{top speed|~234 MPH}}} |} == Gallery == <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] dc59ac5322fb1d061a0a3049e5081796a73fd1cd 23 22 2022-08-19T22:42:52Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2021 Mazday3}}} |- ! colspan="2" | [[File:{{{img|Mazday3 Front.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2021 Mazday3 ingame}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |}The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} {| class="wikitable" ! colspan="2" | {{{subj|Maximum Performance}}} |- ! Horsepower | {{{horsepower|1,133 HP}}} |- ! Torque | {{{torque|1,073 LB-FT}}} |- ! Weight | {{{weight|2,883 LB}}} |- ! Top speed | {{{top speed|{{#tip-text: ~234 MPH | Tested with stock gearing}}}}} |} == Gallery == <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 190c92218ae2aac3085024cbdd522869ea1b0ba9 24 23 2022-08-19T22:46:25Z S30Z 2 /* Stats */ wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2021 Mazday3}}} |- ! colspan="2" | [[File:{{{img|Mazday3 Front.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2021 Mazday3 ingame}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |}The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} {| class="wikitable" ! colspan="2" | {{{subj|Maximum Performance}}} |- ! Horsepower | {{{horsepower|1,133 HP}}} |- ! Torque | {{{torque|1,073 LB-FT}}} |- ! Weight | {{{weight|2,883 LB}}} |- ! Top speed | {{{top speed|~234 MPH}}} |} Note: Top speed testing is performed with stock gear ratios. == Gallery == <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] e3272f6125b58a95fc12f9f05b3ded6bce98feef 25 24 2022-08-19T22:46:45Z S30Z 2 S30Z moved page [[Mazday 3]] to [[2021 Mazday3]] without leaving a redirect wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2021 Mazday3}}} |- ! colspan="2" | [[File:{{{img|Mazday3 Front.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2021 Mazday3 ingame}}}</small> |- ! Make | {{{make|[[Mazday]]}}} |- ! Type | {{{type|Hatchback}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019) Mazda3 (4th gen.)]}}} |}The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|252 HP}}} |- ! Torque | {{{torque|310 LB-FT}}} |- ! Weight | {{{weight|3,383 LB}}} |- ! Top speed | {{{top speed|~145 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} {| class="wikitable" ! colspan="2" | {{{subj|Maximum Performance}}} |- ! Horsepower | {{{horsepower|1,133 HP}}} |- ! Torque | {{{torque|1,073 LB-FT}}} |- ! Weight | {{{weight|2,883 LB}}} |- ! Top speed | {{{top speed|~234 MPH}}} |} Note: Top speed testing is performed with stock gear ratios. == Gallery == <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] e3272f6125b58a95fc12f9f05b3ded6bce98feef Category:Vehicles 14 4 5 2022-08-19T17:53:17Z S30Z 2 Created page with "All vehicles in Southwest Florida." wikitext text/x-wiki All vehicles in Southwest Florida. e07a7819d09cd693eb57b6f271bf4fe996b9eeac Category:Hatchback 14 5 6 2022-08-19T17:53:39Z S30Z 2 Created page with "All hatchbacks in Southwest Florida." wikitext text/x-wiki All hatchbacks in Southwest Florida. a9702a24bcca1f539911bab9d10fa4f379506f70 Category:Mazday 14 6 7 2022-08-19T17:55:14Z S30Z 2 Created page with "All Mazday vehicles in Southwest Florida." wikitext text/x-wiki All Mazday vehicles in Southwest Florida. c055fb6777de53a356fc806e0e3cbe8c4565de7c Mazday 0 7 11 2022-08-19T18:12:00Z S30Z 2 Created page with "{| class="infotable" ! colspan="2" | {{{subj|Mazday}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not Mazday.}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda Mazda]}}} |} say something about mazday here You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]]" wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not Mazday.}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda Mazda]}}} |} say something about mazday here You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]] 4bf67d399f6423264ac71a910f9f15823625034f 13 11 2022-08-19T18:13:30Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|This is not Mazday.}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda Mazda]}}} |} == About == say something about mazday here == Vehicles by Mazday == You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]] c20fad9c2dbc8da1d299e3f852e56721bd55cc07 15 13 2022-08-19T21:56:18Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday}}} |- ! colspan="2" | [[File:{{{img|Albert_Einstein_Head.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|If we had a good picture of a Mazday badge, it'd be here. In the meantime, enjoy this picture of Albert Einstein.}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda Mazda]}}} |} == About == Mazday is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Mazda Mazda.] == Vehicles by Mazday == You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]] 2448fe1328aef521d75329095ce78d911f08275a 40 15 2022-08-20T00:12:52Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday}}} |- ! colspan="2" | [[File:{{{img|Mazday_Logo.png}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|Mazday logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda Mazda]}}} |} == About == Mazday is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Mazda Mazda.] == Vehicles by Mazday == You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]] 2795c8b2560385f7208463b12c1506f8af96ad98 47 40 2022-08-20T00:25:33Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Mazday}}} |- ! colspan="2" | [[File:{{{img|Mazday_Logo.png}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|Mazday logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Mazda Mazda]}}} |} Mazday is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Mazda Mazda.] == Vehicles by Mazday == You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]] 79c0d56aec894fe8cf4698d6f1f2f53d220874ce Category:Car Companies 14 8 12 2022-08-19T18:12:19Z S30Z 2 Created page with "All car companies in Southwest Florida." wikitext text/x-wiki All car companies in Southwest Florida. 66589e6136b98aa8c820d1260fa2c8973e59c479 Mazda 0 9 14 2022-08-19T21:53:16Z S30Z 2 Redirected page to [[Mazday]] wikitext text/x-wiki #REDIRECT [[Mazday]] 9b4203a87fa78a93ffa17397a739ba81571263cb File:Mazday3 Front.jpg 6 10 18 2022-08-19T22:21:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mazday3 Rear.jpg 6 11 20 2022-08-19T22:24:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Strigid Favicon.png 6 13 27 2022-08-19T23:00:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Toyoto Camry 0 15 34 2022-08-20T00:03:54Z S30Z 2 Created page with "{| class="infotable" ! colspan="2" | {{{subj|2020 Toyoto Camry}}} |- ! colspan="2" | [[File:{{{img|Toyoto Camry.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2020 Toyoto Camry ingame}}}</small> |- ! Make | {{{make|[[Toyoto]]}}} |- ! Type | {{{type|Sedan}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Toyota_C..." wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|2020 Toyoto Camry}}} |- ! colspan="2" | [[File:{{{img|Toyoto Camry.jpg}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|2020 Toyoto Camry ingame}}}</small> |- ! Make | {{{make|[[Toyoto]]}}} |- ! Type | {{{type|Sedan}}} |- ! Price | {{{price|Free}}} |- ! Availability | {{{availability|Given out to all players}}} |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Toyota_Camry_(XV70) Toyota Camry (8th gen.)]}}} |}The 2020 Toyoto Camry is a four door sedan produced by [[Toyoto|Toyoto.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" | {{{subj|Stock Performance}}} |- ! Horsepower | {{{horsepower|203 HP}}} |- ! Torque | {{{torque|265 LB-FT}}} |- ! Weight | {{{weight|3,351 LB}}} |- ! Top speed | {{{top speed|~107 MPH}}} |- ! Drivetrain | {{{drivetrain|FWD}}} |} {| class="wikitable" ! colspan="2" | {{{subj|Maximum Performance}}} |- ! Horsepower | {{{horsepower|1,045 HP}}} |- ! Torque | {{{torque|1,517 LB-FT}}} |- ! Weight | {{{weight|2,851 LB}}} |- ! Top speed | {{{top speed|~187 MPH}}} |} Note: Top speed testing is performed with stock gear ratios. == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> [[Category: Vehicles]] [[Category: Sedan]] [[Category: Toyoto]] e54a3c304547133eb033798de6e88adcb68eb72e File:Toyoto Camry.jpg 6 16 35 2022-08-20T00:05:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Toyoto Camry Rear.jpg 6 17 36 2022-08-20T00:05:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 37 36 2022-08-20T00:06:53Z S30Z 2 S30Z moved page [[File:Toyoto Camry rear.jpg]] to [[File:Toyoto Camry Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mazday Logo.png 6 19 39 2022-08-20T00:11:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 44 39 2022-08-20T00:23:11Z S30Z 2 S30Z uploaded a new version of [[File:Mazday Logo.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Category:Sedan 14 20 41 2022-08-20T00:14:03Z S30Z 2 Created page with "All sedans in Southwest Florida." wikitext text/x-wiki All sedans in Southwest Florida. 11f7d2aff9cf2f8d948625689d73ff498c694a89 Category:Toyoto 14 21 42 2022-08-20T00:14:38Z S30Z 2 Created page with "All Toyoto vehicles in Southwest Florida." wikitext text/x-wiki All Toyoto vehicles in Southwest Florida. 872bffa31446619df505bff5e43fadabdb8eea0d File:Toyoto Logo.png 6 22 43 2022-08-20T00:23:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Toyoto 0 23 45 2022-08-20T00:24:40Z S30Z 2 Created page with "{| class="infotable" ! colspan="2" | {{{subj|Toyoto}}} |- ! colspan="2" | [[File:{{{img|Toyoto_Logo.png}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|Toyoto logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Toyota Toyota]}}} |} == About == Toyoto is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can fin..." wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Toyoto}}} |- ! colspan="2" | [[File:{{{img|Toyoto_Logo.png}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|Toyoto logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Toyota Toyota]}}} |} == About == Toyoto is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can find a list of all vehicles by Toyoto [[:Category:Toyoto|here.]] [[Category: Car Companies]] 02d0ca61845d945381cecd28b60c6c3355271f7a 46 45 2022-08-20T00:25:09Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|Toyoto}}} |- ! colspan="2" | [[File:{{{img|Toyoto_Logo.png}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|Toyoto logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[https://en.wikipedia.org/wiki/Toyota Toyota]}}} |} Toyoto is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can find a list of all vehicles by Toyoto [[:Category:Toyoto|here.]] [[Category: Car Companies]] a2fbd5361b524653d321d36e1a37876bd72eaf1b Toyota 0 24 48 2022-08-20T00:32:17Z S30Z 2 Redirected page to [[Toyoto]] wikitext text/x-wiki #REDIRECT [[Toyoto]] f23902d0e61e72961d415a4836b00d0f78112073 Template:Carinfo 10 25 49 2022-08-20T01:05:32Z S30Z 2 Created page with "{| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |}" wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |} 20bc18d56cac2ea16718a5d186cb73b5bd658d7e Template:Carinfo 10 25 50 49 2022-08-20T01:24:00Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |} <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 86754548ffc70ac5eab29ed8435883432e82f83c 51 50 2022-08-20T01:38:39Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string" }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string" } }, "description": "Car information box" } </templatedata> </noinclude> ce59fae2b6ff3db4c0bf79867a7228648826a8c0 53 51 2022-08-20T01:48:04Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> c116de74477a0fba16d10961ae99e794ce740fd4 90 53 2022-08-21T04:19:54Z S30Z 2 testing categories in template wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}]] [[Category:{{{make}}}]] </includeonly> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 9786e6db69b9a37e2420b4308d62cfbb54c19f2c 91 90 2022-08-21T04:20:49Z S30Z 2 Undo revision 90 by [[Special:Contributions/S30Z|S30Z]] ([[User talk:S30Z|talk]]) wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> c116de74477a0fba16d10961ae99e794ce740fd4 92 91 2022-08-21T04:23:31Z S30Z 2 test 2 wikitext text/x-wiki <includeonly> {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}]] [[Category:{{{make}}}]] </includeonly> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 150f94aad9c7e27ab239c8f549e17a3fbb6471e1 93 92 2022-08-21T04:23:58Z S30Z 2 Undo revision 92 by [[Special:Contributions/S30Z|S30Z]] ([[User talk:S30Z|talk]]) wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> c116de74477a0fba16d10961ae99e794ce740fd4 94 93 2022-08-21T04:27:57Z S30Z 2 one more try wikitext text/x-wiki <onlyinclude> {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}]] [[Category:{{{make}}}]] </onlyinclude> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> ee3312331aec7ac82d3b964cae56497ff76bf792 96 94 2022-08-21T04:29:50Z S30Z 2 we're getting there trust me wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}]] [[Category:{{{make}}}]] </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 2994d74af79c430f79e8cdad8f39be1564b428f5 97 96 2022-08-21T04:41:39Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}]] [[Category:{{{make}}}]] {{#if:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Limited status", "type": "boolean", "description": "Is this vehicle limited?" } }, "description": "Car information box" } </templatedata> </noinclude> fa99bce31e6dbaeb5ca1c8b2485973c23b40623f 98 97 2022-08-21T04:43:01Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}]] [[Category:{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Limited status", "type": "boolean", "description": "Is this vehicle limited?" } }, "description": "Car information box" } </templatedata> </noinclude> 46f6c66f1c4b2bd18b6672704c86bff037f7a04f 2021 Mazday3 0 3 52 25 2022-08-20T01:44:44Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Mazday3|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)|rlname=Mazda3 (4th gen.)}} The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {| class="wikitable" ! colspan="2" |{{{subj|Stock Performance}}} |- !Horsepower |{{{horsepower|252 HP}}} |- !Torque |{{{torque|310 LB-FT}}} |- !Weight |{{{weight|3,383 LB}}} |- !Top speed |{{{top speed|~145 MPH}}} |- !Drivetrain |{{{drivetrain|FWD}}} |} {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|1,133 HP}}} |- !Torque |{{{torque|1,073 LB-FT}}} |- !Weight |{{{weight|2,883 LB}}} |- !Top speed |{{{top speed|~234 MPH}}} |} Note: Top speed testing is performed with stock gear ratios. ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] eac297c4a39890a3de656471d295e67cf8427ed5 58 52 2022-08-20T02:01:44Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Mazday3|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)|rlname=Mazda3 (4th gen.)}} The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=252|tqval=310|whval=3383|spdval=145|drv=FWD}}{{Maxstats|hpval=1133|tqval=1073|whval=2883|spdval=234}} Note: Top speed testing is performed with stock gear ratios. ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 20afcfe7f880fec4275379372f029104d71faf26 60 58 2022-08-20T02:02:53Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Mazday3|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)|rlname=Mazda3 (4th gen.)}} The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=252|tqval=310|whval=3383|spdval=145|drv=FWD}}{{Maxstats|hpval=1133|tqval=1073|whval=2883|spdval=234}} ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] bbd04651eacd03ccd5c9c38e760f25e55d2400b4 99 60 2022-08-21T04:47:11Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Mazday3|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)|rlname=Mazda3 (4th gen.)|limited=0}} The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=252|tqval=310|whval=3383|spdval=145|drv=FWD}}{{Maxstats|hpval=1133|tqval=1073|whval=2883|spdval=234}} ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> [[Category: Vehicles]] [[Category: Hatchback]] [[Category: Mazday]] 37594123f084d217157cceca8c536e1c10182a9b Template:Stockstats 10 26 54 2022-08-20T01:52:30Z S30Z 2 Created page with "{| class="wikitable" ! colspan="2" |{{{subj|Stock Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |- !Drivetrain |{{{drivetrain|{{{drv}}}}}} |} <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "252", "type": "number", "required": true }, "tqval": { "label": "Torque",..." wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Stock Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |- !Drivetrain |{{{drivetrain|{{{drv}}}}}} |} <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "252", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "310", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "3383", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "145", "type": "number", "required": true }, "drv": { "label": "Drivetrain", "example": "FWD", "type": "string" } } } </templatedata> </noinclude> d1b5152a7bae8e941f961d70b78ff76fa94c1b2e 55 54 2022-08-20T01:52:58Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Stock Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |- !Drivetrain |{{{drivetrain|{{{drv}}}}}} |} <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "252", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "310", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "3383", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "145", "type": "number", "required": true }, "drv": { "label": "Drivetrain", "example": "FWD", "type": "string" } }, "description": "Stock vehicle performance box" } </templatedata> </noinclude> 2e75fc15b070ce5c700ed67ae63b54821398893d 57 55 2022-08-20T02:00:06Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Stock Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |- !Drivetrain |{{{drivetrain|{{{drv}}}}}} |} <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "252", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "310", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "3383", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "145", "type": "number", "required": true }, "drv": { "label": "Drivetrain", "example": "FWD", "type": "string", "required": true } }, "description": "Stock vehicle performance box" } </templatedata> </noinclude> 429a0d3e933a6a0c2c69ef1355617638d1e141b2 Template:Maxstats 10 27 56 2022-08-20T01:57:51Z S30Z 2 Created page with "{| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number"..." wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> c5d9bf3b0360ebdf9f09d17fd9d2b0831e0c4f1e 59 56 2022-08-20T02:02:40Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} Note: Top speed testing is performed with stock gear ratios. <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> 3c9cfa0c8bb1db396442b3b31052fee84c821d43 62 59 2022-08-20T09:00:24Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} Note: Top speed testing is performed with stock gear ratios. You will likely be able to achieve a better top speed by adjusting gearing. <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> 5767f8ce26b00d757c15c1a3ef78ae4e7d1ecfdd 2020 Toyoto Camry 0 15 61 34 2022-08-20T02:10:46Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry|image=Toyoto_Camry.jpg|make=Toyoto|type=Sedan|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry (8th gen.)}} The 2020 Toyoto Camry is a four door sedan produced by [[Toyoto|Toyoto.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=203|tqval=265|whval=3351|spdval=107|drv=FWD}}{{Maxstats|hpval=1045|tqval=1517|whval=2851|spdval=187}} == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> [[Category: Vehicles]] [[Category: Sedan]] [[Category: Toyoto]] a26a28a64e63bf74b2c47c92c9ae102b57fef817 76 61 2022-08-20T22:17:56Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry|image=Toyoto_Camry.jpg|make=Toyoto|type=Sedan|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry (8th gen.)}} The 2020 Toyoto Camry is a four door sedan produced by [[Toyoto|Toyoto.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=203|tqval=265|whval=3351|spdval=107|drv=FWD}} {{Maxstats|hpval=1045|tqval=1517|whval=2851|spdval=187}} == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> [[Category: Vehicles]] [[Category: Sedan]] [[Category: Toyoto]] 3d8720e21154742d5777ebdfdf3782d82f0e8e04 101 76 2022-08-21T04:48:50Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry|image=Toyoto_Camry.jpg|make=Toyoto|type=Sedan|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry (8th gen.)|limited=0}} The 2020 Toyoto Camry is a four door sedan produced by [[Toyoto|Toyoto.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=203|tqval=265|whval=3351|spdval=107|drv=FWD}} {{Maxstats|hpval=1045|tqval=1517|whval=2851|spdval=187}} == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> [[Category: Vehicles]] [[Category: Sedan]] [[Category: Toyoto]] a5e261ceb570f902a03182642efb06ef37f50cef Template:Makeinfo 10 28 63 2022-08-20T09:06:28Z S30Z 2 Created page with "{| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage":..." wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage": { "label": "Company logo image", "example": "Mazday_Logo.png", "required": true }, "rllink": { "label": "Real-life counterpart Wikipedia link", "example": "https://en.wikipedia.org/wiki/Mazda", "required": true }, "rlname": { "label": "Real-life counterpart name", "example": "Mazda", "required": true } }, "description": "Car company info box" } </templatedata> </noinclude> a011094266429084ef6e4be9f7366475c2fbcf52 Mazday 0 7 64 47 2022-08-20T09:07:32Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Mazday|makeimage=Mazday_Logo.png|rllink=https://en.wikipedia.org/wiki/Mazda|rlname=Mazda}} Mazday is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Mazda Mazda.] == Vehicles by Mazday == You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] [[Category: Car Companies]] 6b740f7e40fd3deb4224137ce0973e3ed0ff4d99 Toyoto 0 23 65 46 2022-08-20T09:09:34Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Toyoto|makeimage=Toyoto_Logo.png|rllink=https://en.wikipedia.org/wiki/Toyota|rlname=Toyota}} Toyoto is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can find a list of all vehicles by Toyoto [[:Category:Toyoto|here.]] [[Category: Car Companies]] 0fd1a83a046692955e0027862ea79e3cbda4f310 File:Miata Front.jpg 6 29 66 2022-08-20T09:15:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Miata Rear.jpg 6 30 67 2022-08-20T09:15:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1990 Mazday Miata 0 31 68 2022-08-20T09:35:55Z S30Z 2 Created page with "{{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Max..." wikitext text/x-wiki {{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Maxstats|hpval=864|tqval=798|whval=1600|spdval=140}} == Gallery == <gallery> File:Miata Rear.jpg|Rear view of the 1990 Mazday Miata </gallery> [[Category: Vehicles]] [[Category: Coupes]] [[Category: Mazday]] 0909cbee2ebce6eb05897d9975611e2fc4fd69d9 75 68 2022-08-20T22:15:47Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Maxstats|hpval=864|tqval=798|whval=1600|spdval=140}} == Gallery == <gallery> File:Miata Rear.jpg|Rear view of the 1990 Mazday Miata </gallery> [[Category: Vehicles]] [[Category: Coupe]] [[Category: Mazday]] 80d0ee8d21205acb3db4ad9e2e519e2ac6c2258e 95 75 2022-08-21T04:28:18Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Maxstats|hpval=864|tqval=798|whval=1600|spdval=140}} == Gallery == <gallery> File:Miata Rear.jpg|Rear view of the 1990 Mazday Miata </gallery> c56b2c2e2986ad262da5aa6387f74d0b66d97b67 102 95 2022-08-21T04:49:17Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)|limited=0}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Maxstats|hpval=864|tqval=798|whval=1600|spdval=140}} == Gallery == <gallery> File:Miata Rear.jpg|Rear view of the 1990 Mazday Miata </gallery> 58f74a83ac03012e8c9b2bb94962ee7cb7e5f9c5 Category:Coupe 14 32 69 2022-08-20T09:37:45Z S30Z 2 Created page with "All coupes in Southwest Florida." wikitext text/x-wiki All coupes in Southwest Florida. 3faf552fe175ec86557b3cbe830638b1350dd523 72 69 2022-08-20T19:54:12Z S30Z 2 wikitext text/x-wiki All coupes in Southwest Florida. [[Category: Vehicles]] 852f5a11aa31b0f16df9378cf5cec03b28df1adc 73 72 2022-08-20T22:15:15Z S30Z 2 S30Z moved page [[Category:Coupes]] to [[Category:Coupe]]: making name more consistent wikitext text/x-wiki All coupes in Southwest Florida. [[Category: Vehicles]] 852f5a11aa31b0f16df9378cf5cec03b28df1adc Category:Hatchback 14 5 70 6 2022-08-20T19:53:54Z S30Z 2 test wikitext text/x-wiki All hatchbacks in Southwest Florida. [[Category: Vehicles]] 83a10398d4962b13612fd1077a93b53747328c7f Category:Sedan 14 20 71 41 2022-08-20T19:54:07Z S30Z 2 wikitext text/x-wiki All sedans in Southwest Florida. [[Category: Vehicles]] 25384e7797b12fa7dc2a99fd309445a3c86f318f Category:Coupes 14 33 74 2022-08-20T22:15:15Z S30Z 2 S30Z moved page [[Category:Coupes]] to [[Category:Coupe]]: making name more consistent wikitext text/x-wiki #REDIRECT [[:Category:Coupe]] 772433972ce2e4d8ad0b41272ee33f7550019152 Category:Car Companies 14 8 77 12 2022-08-20T22:18:58Z S30Z 2 wikitext text/x-wiki All car companies in Southwest Florida. [[Category: Vehicles]] 6d67f131815132c02beb9965306f76dcb4c57a60 Category:SUV 14 34 78 2022-08-20T23:03:29Z S30Z 2 Created page with "All SUVs in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All SUVs in Southwest Florida. [[Category: Vehicles]] 8cc3bb1d504535dac705f013639ff836d76bfbe4 File:TT-RS Front.jpg 6 35 79 2022-08-21T00:35:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TT-RS Rear.jpg 6 36 80 2022-08-21T00:36:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Owdi TT-RS 0 37 81 2022-08-21T01:00:30Z S30Z 2 Created page with "{{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) }} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|..." wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) }} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> [[Category: Vehicles]] [[Category: Coupe]] [[Category: Owdi]] 76613ff194cf9b213220e067d3329728831229dc 100 81 2022-08-21T04:48:35Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) |limited=0}} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> [[Category: Vehicles]] [[Category: Coupe]] [[Category: Owdi]] a4ea52c212208732dffb7f87381613f1fe3ebdd7 Category:Limited vehicles 14 38 82 2022-08-21T01:02:20Z S30Z 2 Created page with "All limited vehicles in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All limited vehicles in Southwest Florida. [[Category: Vehicles]] 1804df721918dc9d10bd3fb10930641baa9bb1d5 Main Page 0 1 83 9 2022-08-21T03:17:51Z S30Z 2 wikitext text/x-wiki __NOTOC__ === Welcome to the Official Southwest Florida Roblox Wiki! === [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! === Quick Links === [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] === For visitors of this wiki === Hello. This is a very early work in progress. === For editors === [[Guides]] cd8beda94ae7036554c656f91439ba1ed4fb59b5 87 83 2022-08-21T03:26:41Z S30Z 2 wikitext text/x-wiki __NOTOC__ === Welcome to the Official Southwest Florida Roblox Wiki! === [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! === Quick Links === [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] === For visitors === Hello. This is a very early work in progress. === For editors === [[Guides]] e3b39f53ba17a30bb58cf093cbe86c3fc49525e6 File:Strigid Favicon.png 6 13 85 27 2022-08-21T03:25:01Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Favicon.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 86 85 2022-08-21T03:25:23Z S30Z 2 Protected "[[File:Strigid Favicon.png]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite)) wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Owdi TT-RS 0 37 103 100 2022-08-21T04:49:39Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) |limited=1}} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> [[Category: Vehicles]] [[Category: Coupe]] [[Category: Owdi]] 52d2a02c9f5d3715310808bc6006a534d3995fa3 104 103 2022-08-21T04:49:54Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) |limited=0}} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> [[Category: Vehicles]] [[Category: Coupe]] [[Category: Owdi]] a4ea52c212208732dffb7f87381613f1fe3ebdd7 107 104 2022-08-21T04:52:52Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) |limited=0}} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> 7d9917a2e0e8b7f21f3dfebb026dfcc2e6b0c3e6 108 107 2022-08-21T04:58:37Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) |limited=0 }} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> cb91def6d847b8320cce84e4b1734d95a2115cea 2021 Mazday3 0 3 105 99 2022-08-21T04:52:26Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Mazday3|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)|rlname=Mazda3 (4th gen.)|limited=0}} The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=252|tqval=310|whval=3383|spdval=145|drv=FWD}}{{Maxstats|hpval=1133|tqval=1073|whval=2883|spdval=234}} ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> dfb575c1cfe5dea6e7eaf1cb7294d84ea67b9cdb 2020 Toyoto Camry 0 15 106 101 2022-08-21T04:52:44Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry|image=Toyoto_Camry.jpg|make=Toyoto|type=Sedan|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry (8th gen.)|limited=0}} The 2020 Toyoto Camry is a four door sedan produced by [[Toyoto|Toyoto.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=203|tqval=265|whval=3351|spdval=107|drv=FWD}} {{Maxstats|hpval=1045|tqval=1517|whval=2851|spdval=187}} == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> 4898ca9e845044aa4c41b82536d14c0812a335e3 Template:Carinfo 10 25 109 98 2022-08-21T05:15:22Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Limited status", "type": "boolean", "description": "Is this vehicle limited?", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> c5ce0c1bbe7ace2b04bc86fefee5036b5a2847fe 117 109 2022-08-21T06:33:27Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Limited status", "type": "boolean", "description": "Is this vehicle limited?", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> e48377696c931319f122323df9ec0b69aa1f5c31 128 117 2022-08-21T22:39:47Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 91ddd7ebd87288fa4c7a01c9572c1a3b22f58c08 Template:Makeinfo 10 28 111 63 2022-08-21T06:12:51Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Car Companies]] </includeonly> <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage": { "label": "Company logo image", "example": "Mazday_Logo.png", "required": true }, "rllink": { "label": "Real-life counterpart Wikipedia link", "example": "https://en.wikipedia.org/wiki/Mazda", "required": true }, "rlname": { "label": "Real-life counterpart name", "example": "Mazda", "required": true } }, "description": "Car company info box" } </templatedata> </noinclude> 83a578e6a4be630722b65020a905d0f5e1064e46 Mazday 0 7 112 64 2022-08-21T06:13:06Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Mazday|makeimage=Mazday_Logo.png|rllink=https://en.wikipedia.org/wiki/Mazda|rlname=Mazda}} Mazday is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Mazda Mazda.] == Vehicles by Mazday == You can find a list of all vehicles by Mazday [[:Category:Mazday|here.]] 2731c0a3c36eeeeb878657516c3ece624b203355 Toyoto 0 23 113 65 2022-08-21T06:13:17Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Toyoto|makeimage=Toyoto_Logo.png|rllink=https://en.wikipedia.org/wiki/Toyota|rlname=Toyota}} Toyoto is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can find a list of all vehicles by Toyoto [[:Category:Toyoto|here.]] ad70ce66e5743341dc513c73cdd09eaba9a6b661 File:Placeholder Logo.png 6 42 114 2022-08-21T06:19:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Owdi 0 43 115 2022-08-21T06:31:29Z S30Z 2 Created page with "{{Makeinfo|makename=Owdi|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Audi|rlname=Audi}} Owdi is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Audi Audi.] == Vehicles by Owdi == You can find a list of all vehicles by Owdi [[:Category:Owdi|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Owdi|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Audi|rlname=Audi}} Owdi is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Audi Audi.] == Vehicles by Owdi == You can find a list of all vehicles by Owdi [[:Category:Owdi|here.]] 139ffb77126b67d303fc72120858fcf1daf70506 Category:Owdi 14 44 118 2022-08-21T06:34:45Z S30Z 2 Created page with "All Owdi vehicles in Southwest Florida." wikitext text/x-wiki All Owdi vehicles in Southwest Florida. 0604fd0a52d68071d059a434f94dae65a98a65fc 2021 Luxuss LC500 0 48 122 2022-08-21T16:28:09Z Cheemsthethird 10 Created page with "The 2021 Luxuss LC500 is a two door luxury coupe produced by Luxuss. It can be purchased from the dealership for $102,620. {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=Not limited}} == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=~160|d..." wikitext text/x-wiki The 2021 Luxuss LC500 is a two door luxury coupe produced by Luxuss. It can be purchased from the dealership for $102,620. {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=Not limited}} == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=~160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=~219}} 18d1031dcffe6ad573132cecc16434841389864e 123 122 2022-08-21T16:31:25Z Cheemsthethird 10 Added some screenshots wikitext text/x-wiki The 2021 Luxuss LC500 is a two door luxury coupe produced by Luxuss. It can be purchased from the dealership for $102,620. {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=No}} == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=~160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=~219}} <gallery> File:Lc500 rear.jpg|Rear view of the 2021 Luxuss LC500. File:Lc 500dealer.jpg|The 2021 Luxuss LC500 can also be seen as a display car in the dealership. </gallery> dfb468c10e18c20b5a21fd19fecb82135e045cbb 125 123 2022-08-21T16:35:40Z Cheemsthethird 10 /* Stats */ wikitext text/x-wiki The 2021 Luxuss LC500 is a two door luxury coupe produced by Luxuss. It can be purchased from the dealership for $102,620. {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=}} == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} <gallery> File:Lc500 rear.jpg|Rear view of the 2021 Luxuss LC500. File:Lc 500dealer.jpg|The 2021 Luxuss LC500 can also be seen as a display car in the dealership. </gallery> c7c3eb631e47cb15e781c07e8e1140dc1211f970 126 125 2022-08-21T16:36:48Z Cheemsthethird 10 wikitext text/x-wiki The 2021 Luxuss LC500 is a two door luxury coupe produced by [[Luxuss]]. It can be purchased from the dealership for $102,620. {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=}} == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} <gallery> File:Lc500 rear.jpg|Rear view of the 2021 Luxuss LC500. File:Lc 500dealer.jpg|The 2021 Luxuss LC500 can also be seen as a display car in the dealership. </gallery> 3951198f386b1e310ea57d1c0ab7a548528839fa 127 126 2022-08-21T22:37:24Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=0}} The 2021 Luxuss LC500 is a two door luxury coupe produced by [[Luxuss]]. It can be purchased from the dealership for $102,620. == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} <gallery> File:Lc500 rear.jpg|Rear view of the 2021 Luxuss LC500. File:Lc 500dealer.jpg|The 2021 Luxuss LC500 can also be seen as a display car in the dealership. </gallery> 47ae4a39ca471db997a8a5a4f8da28d6d5c24069 140 127 2022-08-21T23:37:13Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=0}} The 2021 Luxuss LC500 is a two door luxury coupe produced by [[Luxuss]]. It can be purchased from the dealership for $102,620. == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} == Gallery == <gallery> File:Lc500 rear.jpg|Rear view of the 2021 Luxuss LC500. File:Lc 500dealer.jpg|The 2021 Luxuss LC500 can also be seen as a display car in the dealership. </gallery> ce3a76a61c3c240892fe6c0a4d58951fec5e8d42 Category:Luxuss 14 49 124 2022-08-21T16:33:46Z Cheemsthethird 10 Created page with "All Luxuss vehicles in Southwest Florida." wikitext text/x-wiki All Luxuss vehicles in Southwest Florida. 41f1121e75fe1769612fcedbdb42d0cdd4774b7c Luxuss 0 50 129 2022-08-21T22:42:46Z S30Z 2 Created page with "{{Makeinfo|makename=Luxuss|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lexus|rlname=Lexus}} Luxuss is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Lexus Lexus.] == Vehicles by Luxuss == You can find a list of all vehicles by Luxuss [[:Category:Luxuss|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Luxuss|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lexus|rlname=Lexus}} Luxuss is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Lexus Lexus.] == Vehicles by Luxuss == You can find a list of all vehicles by Luxuss [[:Category:Luxuss|here.]] ea7c24cb09cab3500b846951737b0aad8df32c16 File:Welcome.jpg 6 54 133 2022-08-21T23:12:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 134 133 2022-08-21T23:15:18Z S30Z 2 S30Z uploaded a new version of [[File:Welcome.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 136 134 2022-08-21T23:23:26Z S30Z 2 S30Z uploaded a new version of [[File:Welcome.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 137 136 2022-08-21T23:23:47Z S30Z 2 S30Z reverted [[File:Welcome.jpg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Main Page 0 1 139 87 2022-08-21T23:27:38Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. ===For editors=== [[Guides]] 27034721f5ca7b29d2288704b61fa31576f07d56 1998 McFaren F1 0 56 141 2022-08-21T23:42:32Z Doggies50 3 Created page with "{{Carinfo|name=1998 Mcfaren F1|image=Screenshot 2022-08-21 185450.png|make=Mcfaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mcfaren F1|rlname=Mclaren F1|limited=1}} The Mcfaren F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The Mcfaren F1 has 3 seats and a maximu..." wikitext text/x-wiki {{Carinfo|name=1998 Mcfaren F1|image=Screenshot 2022-08-21 185450.png|make=Mcfaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mcfaren F1|rlname=Mclaren F1|limited=1}} The Mcfaren F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The Mcfaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}}<gallery> File:Mcfaren rear.png </gallery> eaae72f14a7bc4eec211c05a5b939f81e8665fca 144 141 2022-08-21T23:53:49Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1998 Mcfaren F1|image=Screenshot 2022-08-21 185450.png|make=Mcfaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1}} The Mcfaren F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The Mcfaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mcfaren rear.png </gallery> 2c0cc047c5def7c8d528c085bef4ad04f227523e 149 144 2022-08-22T00:02:45Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=Screenshot 2022-08-21 185450.png|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1}} The McFaren F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mcfaren rear.png </gallery> 932f6a4f987a106349906ccc8ae672156a7283a0 150 149 2022-08-22T00:03:01Z S30Z 2 S30Z moved page [[1998 Mcfaren F1]] to [[1998 McFaren F1]] wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=Screenshot 2022-08-21 185450.png|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1}} The McFaren F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mcfaren rear.png </gallery> 932f6a4f987a106349906ccc8ae672156a7283a0 154 150 2022-08-22T00:05:20Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=Screenshot 2022-08-21 185450.png|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1}} The [[McFaren]] F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mcfaren rear.png </gallery> b4f7010d099a6d48b1d341a04be2e95fb5456c79 File:'13mustanggt front.jpg 6 60 147 2022-08-21T23:58:21Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:'13mustanggt rear.jpg 6 61 148 2022-08-21T23:58:44Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1998 Mcfaren F1 0 62 151 2022-08-22T00:03:01Z S30Z 2 S30Z moved page [[1998 Mcfaren F1]] to [[1998 McFaren F1]] wikitext text/x-wiki #REDIRECT [[1998 McFaren F1]] 86cd9ec237d1bdedfc61582957eec7e8a15505f3 Category:Hyper 14 63 152 2022-08-22T00:04:40Z S30Z 2 Created page with "All hypercars in Southwest Florida." wikitext text/x-wiki All hypercars in Southwest Florida. 95465f0c5eb12ee13983b43245ec9d2692fe4073 156 152 2022-08-22T00:07:50Z S30Z 2 wikitext text/x-wiki All hypercars in Southwest Florida. [[Category:Vehicles]] bc9bade9ee038cb0c95f59db00c6e0b52a50ea22 Category:McFaren 14 64 153 2022-08-22T00:04:55Z S30Z 2 Created page with "All McFaren vehicles in Southwest Florida." wikitext text/x-wiki All McFaren vehicles in Southwest Florida. 93105e220ce87176cafbca2a285c5ac32022f7c4 McFaren 0 65 155 2022-08-22T00:06:51Z S30Z 2 Created page with "{{Makeinfo|makename=McFaren|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/McLaren|rlname=McLaren}} McFaren is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/McLaren_Automotive McLaren.] == Vehicles by McFaren == You can find a list of all vehicles by McFaren [[:Category:McFaren|here.]]" wikitext text/x-wiki {{Makeinfo|makename=McFaren|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/McLaren|rlname=McLaren}} McFaren is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/McLaren_Automotive McLaren.] == Vehicles by McFaren == You can find a list of all vehicles by McFaren [[:Category:McFaren|here.]] db32cd7a61c1d580c4950c4c355de0d34134c85d 2013 Fard Mustang GT 0 66 157 2022-08-22T00:09:45Z Cheemsthethird 10 Created page with "{{Carinfo|name=2013 Fard Mustang GT|image='13mustanggt_front.jpg|make=Fard|type=Coupe|price=$26,550|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT (S-197 II)|limited=0}} The 2013 Fard Mustang GT is a two door coupe produced by Fard. It can be purchased from the dealership for $26,550. == Stats == The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {..." wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT|image='13mustanggt_front.jpg|make=Fard|type=Coupe|price=$26,550|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT (S-197 II)|limited=0}} The 2013 Fard Mustang GT is a two door coupe produced by Fard. It can be purchased from the dealership for $26,550. == Stats == The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}}{{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustanggt rear.jpg|left|thumb|Rear view of the 2013 Fard Mustang GT. ]] f7a3b467ee8ded3643e3a78feb837a7cbdb73b91 160 157 2022-08-22T00:16:18Z Cheemsthethird 10 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT|image='13mustanggt_front.jpg|make=Fard|type=Coupe|price=$26,550|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT (S-197 II)|limited=0}} The 2013 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $26,550. == Stats == The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}}{{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustanggt rear.jpg|left|thumb|Rear view of the 2013 Fard Mustang GT. ]] 2b91e63190ab97ce2b2b8abfb06eb036c6fdede7 2020 Toyoto Corolla 0 67 158 2022-08-22T00:11:38Z JordynStar 5 Created page with "The 2020 Toyota Corolla is the 12th generation of the highly regarded Toyota Corolla. == Stats == The Vehicle can hold 5 passengers and hold 13 gallons of fuel. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=~110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=~193}}{{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.png|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_..." wikitext text/x-wiki The 2020 Toyota Corolla is the 12th generation of the highly regarded Toyota Corolla. == Stats == The Vehicle can hold 5 passengers and hold 13 gallons of fuel. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=~110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=~193}}{{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.png|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla|limited=0}}<gallery> File:2020 Corolla Rear.png|2020 Corolla Rear </gallery> f6294f1ca530310d5057c60d4de7de4bac63715b 162 158 2022-08-22T00:19:49Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.png|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla|limited=0}} The 2020 Toyoto Corolla is a five door hatchback produced by [[Toyoto|Toyoto.]] == Stats == The Vehicle can hold 5 passengers and hold 13 gallons of fuel. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} <gallery> File:2020 Corolla Rear.png|2020 Corolla Rear </gallery> aaf5274568177da24a055377790e38cfa1ebf6fc 163 162 2022-08-22T00:20:14Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.png|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla|limited=0}} The 2020 Toyoto Corolla is a five door hatchback produced by [[Toyoto|Toyoto.]] == Stats == The Vehicle can hold 5 passengers and hold 13 gallons of fuel. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} == Gallery == <gallery> File:2020 Corolla Rear.png|2020 Corolla Rear </gallery> 2416df62a03de2dace8bb2154d9c05432f11d0d0 Fard 0 68 159 2022-08-22T00:15:38Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Fard|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ford_Motor_Company|rlname=Ford (Ford Motor Company)}} Fard is a fictional car manufacture in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ford_Motor_Company Ford (Ford Motor Company).] == Vehicles made by Fard == You can find a list of all vehicles by Fard [[:Category:Fard|here]]." wikitext text/x-wiki {{Makeinfo|makename=Fard|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ford_Motor_Company|rlname=Ford (Ford Motor Company)}} Fard is a fictional car manufacture in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ford_Motor_Company Ford (Ford Motor Company).] == Vehicles made by Fard == You can find a list of all vehicles by Fard [[:Category:Fard|here]]. a65b4b622c45879f6c9ef6313649828c8d9c23a4 Category:Fard 14 69 161 2022-08-22T00:17:53Z S30Z 2 Created page with "All Fard Vehicles in Southwest Florida." wikitext text/x-wiki All Fard Vehicles in Southwest Florida. 82392ec7d5e03a93e30fb4fc42367f103a1266ff File:'13mustangvert front.jpg 6 70 164 2022-08-22T00:55:19Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:'13mustangvert rear.jpg 6 71 165 2022-08-22T00:56:03Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:'13mustangvert topdown.jpg 6 72 166 2022-08-22T00:56:30Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2013 Fard Mustang GT Convertible 0 73 167 2022-08-22T01:06:49Z Cheemsthethird 10 Created page with "{{Carinfo|name=2013 Fard Mustang GT Convertible|image='13mustangvert_front.jpg|make=Fard|type=Coupe|price=$29,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT Convertible (S-197 II)|limited=0}} The 2013 Fard Mustang GT Convertible is a two door coupe with a convertible top produced by [[Fard]]. It is the convertible variant of the [[2013 Fard Mustang GT]] and..." wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT Convertible|image='13mustangvert_front.jpg|make=Fard|type=Coupe|price=$29,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT Convertible (S-197 II)|limited=0}} The 2013 Fard Mustang GT Convertible is a two door coupe with a convertible top produced by [[Fard]]. It is the convertible variant of the [[2013 Fard Mustang GT]] and it can be purchased from the dealership for $29,998. {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}}{{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustangvert rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT Convertible.]] [[File:'13mustangvert topdown.jpg|center|thumb|The 2013 Fard Mustang GT Convertible with the convertible top down.]] 525e46c6f87b32196fecf1994ef682dd70791179 2013 Fard Mustang GT500 Super Snake 0 76 170 2022-08-22T01:21:29Z Cheemsthethird 10 Created page with "{{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image='13mustanggt500_front.jpg|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be..." wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image='13mustanggt500_front.jpg|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:'13mustanggt500 rear.jpg|left|thumb]] 1ef5b44565fbdc2bf341823be0f86bdb31edab36 171 170 2022-08-22T01:22:57Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image='13mustanggt500_front.jpg|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:'13mustanggt500 rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT500 Super Snake.]] 856d115984fc2fff1315a24c6709fa5092241eaf 173 171 2022-08-22T01:41:59Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image='13mustanggt500_front.jpg|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:'13mustanggt500 rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT500 Super Snake.]] [[File:'13mustanggt500 radiator.jpg|center|thumb|"Super Snake" written on the radiator of the GT500 Super Snake]] 4414f9add55ac0b0c64de5e5bc985444c262ecbc File:Street Rod Cluster.jpg 6 78 174 2022-08-22T02:04:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Street Rod Rear.jpg 6 79 175 2022-08-22T02:04:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Street Rod Front.jpg 6 80 176 2022-08-22T02:04:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:T120 Cluster.jpg 6 81 177 2022-08-22T02:04:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:T120 Rear.jpg 6 82 178 2022-08-22T02:06:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:T120 Front.jpg 6 83 179 2022-08-22T02:06:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FZ07 Cluster.jpg 6 84 180 2022-08-22T02:07:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FZ07 Rear.jpg 6 85 181 2022-08-22T02:07:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FZ07 Front.jpg 6 86 182 2022-08-22T02:07:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:701 Supermoto Cluster.jpg 6 87 183 2022-08-22T02:07:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:701 Supermoto Rear.jpg 6 88 184 2022-08-22T02:07:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:701 Supermoto Front.jpg 6 89 185 2022-08-22T02:07:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S1000RR Cluster.jpg 6 90 186 2022-08-22T02:08:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S1000RR Rear.jpg 6 91 187 2022-08-22T02:08:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S1000RR Front.jpg 6 92 188 2022-08-22T02:08:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ninja H2 Cluster.jpg 6 93 189 2022-08-22T02:08:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ninja H2 Rear.jpg 6 94 190 2022-08-22T02:08:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ninja H2 Front.jpg 6 95 191 2022-08-22T02:09:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Kawisake Ninja H2 0 96 192 2022-08-22T02:09:52Z S30Z 2 Created page with "{{Carinfo |name=2019 Kawisake Ninja H2 |image=Ninja_H2_Front.jpg |make=Kawisake |type=Motorcycle |price=$229,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_H2 |rlname=Kawasaki Ninja H2 |limited=0 }} The 2019 Kawisake Ninja H2 is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $229,500. ==Stats== The Ninja H2 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be..." wikitext text/x-wiki {{Carinfo |name=2019 Kawisake Ninja H2 |image=Ninja_H2_Front.jpg |make=Kawisake |type=Motorcycle |price=$229,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_H2 |rlname=Kawasaki Ninja H2 |limited=0 }} The 2019 Kawisake Ninja H2 is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $229,500. ==Stats== The Ninja H2 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=228|tqval=98|whval=529|spdval=200|drv=RWD}} ==Gallery== <gallery> File:Ninja_H2_Rear.jpg|Rear view of the 2019 Kawisake Ninja H2. File:Ninja_H2_Cluster.jpg|Gauge cluster of the 2019 Kawisake Ninja H2. </gallery> 61c57b4b3fcd4e735a18a078d27c75e6f7426cdc 2020 BNW S1000RR 0 97 193 2022-08-22T02:10:26Z S30Z 2 Created page with "{{Carinfo |name=2020 BNW S1000RR |image=S1000RR_Front.jpg |make=BNW |type=Motorcycle |price=$195,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_S1000RR |rlname=BMW S1000RR |limited=0 }} The 2020 BNW S1000RR is a motorcycle produced by [[BNW]]. It can be purchased from the dealership for $195,995. ==Stats== The S1000RR has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=207|tqv..." wikitext text/x-wiki {{Carinfo |name=2020 BNW S1000RR |image=S1000RR_Front.jpg |make=BNW |type=Motorcycle |price=$195,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_S1000RR |rlname=BMW S1000RR |limited=0 }} The 2020 BNW S1000RR is a motorcycle produced by [[BNW]]. It can be purchased from the dealership for $195,995. ==Stats== The S1000RR has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=207|tqval=83|whval=434|spdval=190|drv=RWD}} ==Gallery== <gallery> File:S1000RR_Rear.jpg|Rear view of the 2020 BNW S1000RR. File:S1000RR_Cluster.jpg|Gauge cluster of the 2020 BNW S1000RR. </gallery> 5db306b23721f6d716b7e9017a42bfa091459155 2017 Hoosqvarna 701 Supermoto 0 98 194 2022-08-22T02:10:54Z S30Z 2 Created page with "{{Carinfo |name=2017 Hoosqvarna 701 Supermoto |image=701_Supermoto_Front.jpg |make=Hoosqvarna |type=Motorcycle |price=$36,999 |avail=Can be purchased at the dealership |rllink=https://www.cyclechaos.com/wiki/Husqvarna_701_Supermoto |rlname=Husqvarna 701 Supermoto |limited=0 }} The 2017 Hoosqvarna 701 Supermoto is a motorcycle produced by [[Hoosqvarna]]. It can be purchased from the dealership for $36,999. ==Stats== The 701 Supermoto has 1 seat and a fuel capacity of 4..." wikitext text/x-wiki {{Carinfo |name=2017 Hoosqvarna 701 Supermoto |image=701_Supermoto_Front.jpg |make=Hoosqvarna |type=Motorcycle |price=$36,999 |avail=Can be purchased at the dealership |rllink=https://www.cyclechaos.com/wiki/Husqvarna_701_Supermoto |rlname=Husqvarna 701 Supermoto |limited=0 }} The 2017 Hoosqvarna 701 Supermoto is a motorcycle produced by [[Hoosqvarna]]. It can be purchased from the dealership for $36,999. ==Stats== The 701 Supermoto has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=75|tqval=53|whval=333|spdval=125|drv=RWD}} ==Gallery== <gallery> File:701_Supermoto_Rear.jpg|Rear view of the 2017 Hoosqvarna 701 Supermoto. File:701_Supermoto_Cluster.jpg|Gauge cluster of the 2017 Hoosqvarna 701 Supermoto. </gallery> 3bd09e68d11b6036ec2471bffe4e79c858020cd9 2015 Yamiiha FZ-07 0 99 195 2022-08-22T02:11:27Z S30Z 2 Created page with "{{Carinfo |name=2015 Yamiiha FZ-07 |image=FZ07_Front.jpg |make=Yamiiha |type=Motorcycle |price=$32,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_MT-07 |rlname=Yamaha MT-07 (called FZ-07 in North America until 2017) |limited=0 }} The 2015 Yamiiha FZ-07 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $32,599. ==Stats== The FZ-07 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle,..." wikitext text/x-wiki {{Carinfo |name=2015 Yamiiha FZ-07 |image=FZ07_Front.jpg |make=Yamiiha |type=Motorcycle |price=$32,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_MT-07 |rlname=Yamaha MT-07 (called FZ-07 in North America until 2017) |limited=0 }} The 2015 Yamiiha FZ-07 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $32,599. ==Stats== The FZ-07 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=75|tqval=50|whval=399|spdval=140|drv=RWD}} ==Gallery== <gallery> File:FZ07_Rear.jpg|Rear view of the 2015 Yamiiha FZ-07. File:FZ07_Cluster.jpg|Gauge cluster of the 2015 Yamiiha FZ-07. </gallery> df9e1999f4ab777641a0de140385767b76e8867a 2016 Conquest Bonneville T120 0 100 196 2022-08-22T02:11:53Z S30Z 2 Created page with "{{Carinfo |name=2016 Conquest Bonneville T120 |image=T120_Front.jpg |make=Conquest |type=Motorcycle |price=$41,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Bonneville_T120_1200 |rlname=Triumph Bonneville T120 1200 |limited=0 }} The 2016 Conquest Bonneville T120 is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $41,499. ==Stats== The Bonneville T120 has 1 seat and a fuel capacity of 4 ga..." wikitext text/x-wiki {{Carinfo |name=2016 Conquest Bonneville T120 |image=T120_Front.jpg |make=Conquest |type=Motorcycle |price=$41,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Bonneville_T120_1200 |rlname=Triumph Bonneville T120 1200 |limited=0 }} The 2016 Conquest Bonneville T120 is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $41,499. ==Stats== The Bonneville T120 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=80|tqval=77|whval=494|spdval=140|drv=RWD}} ==Gallery== <gallery> File:T120_Rear.jpg|Rear view of the 2016 Conquest Bonneville T120. File:T120_Cluster.jpg|Gauge cluster of the 2016 Conquest Bonneville T120. </gallery> e865194879aab07eed4919793404c3e857e3802c 2021 Hardley-Movinson Street Rod 0 101 197 2022-08-22T02:12:24Z S30Z 2 Created page with "{{Carinfo |name=2021 Hardley-Movinson Street Rod |image=Street_Rod_Front.jpg |make=Hardley-Movinson |type=Motorcycle |price=$37,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Harley-Davidson_Street |rlname=Harley-Davidson Street Rod |limited=0 }} The 2021 Hardley-Movinson Street Rod is a motorcycle produced by [[Hardley-Movinson]]. It can be purchased from the dealership for $37,599. ==Stats== The Street Rod has 1 seat and a fuel c..." wikitext text/x-wiki {{Carinfo |name=2021 Hardley-Movinson Street Rod |image=Street_Rod_Front.jpg |make=Hardley-Movinson |type=Motorcycle |price=$37,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Harley-Davidson_Street |rlname=Harley-Davidson Street Rod |limited=0 }} The 2021 Hardley-Movinson Street Rod is a motorcycle produced by [[Hardley-Movinson]]. It can be purchased from the dealership for $37,599. ==Stats== The Street Rod has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=64|tqval=47|whval=516|spdval=109|drv=RWD}} ==Gallery== <gallery> File:Street_Rod_Rear.jpg|Rear view of the 2021 Hardley-Movinson Street Rod. File:Street_Rod_Cluster.jpg|Gauge cluster of the 2021 Hardley-Movinson Street Rod. </gallery> f8c8c692fee8342f5f3166c2841bff02a96090e5 Category:Motorcycle 14 102 198 2022-08-22T02:12:50Z S30Z 2 Created page with "All motorcycles in Southwest Florida." wikitext text/x-wiki All motorcycles in Southwest Florida. 592f6acc9f124ce0a3535ff312903b3e93be8802 199 198 2022-08-22T02:13:07Z S30Z 2 wikitext text/x-wiki All motorcycles in Southwest Florida. [[Category:Vehicles]] 8a2d55f6a00b4db54077257f9670186329ef2420 1998 McFaren F1 0 56 200 154 2022-08-22T02:50:00Z Cheemsthethird 10 /* Stats */ wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=Screenshot 2022-08-21 185450.png|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1}} The [[McFaren]] F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mcfaren rear.png|The rear view of the McFaren F1. </gallery> ef8430e124f1c927157d755312b8c8ee4f0f1526 File:ZX-10R SE Rear.jpg 6 103 201 2022-08-22T04:19:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZX-10R SE Cluster.jpg 6 104 202 2022-08-22T04:20:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZX-10R SE Front.jpg 6 105 203 2022-08-22T04:20:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Street Triple RS Front.jpg 6 106 204 2022-08-22T04:20:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Street Triple RS Rear.jpg 6 107 205 2022-08-22T04:20:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Street Triple RS Cluster.jpg 6 108 206 2022-08-22T04:20:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:YZF-R1 Front.jpg 6 109 207 2022-08-22T04:21:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:YZF-R1 Rear.jpg 6 110 208 2022-08-22T04:21:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:YZF-R1 Cluster.jpg 6 111 209 2022-08-22T04:21:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CRF1100L Rear.jpg 6 112 210 2022-08-22T04:21:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CRF1100L Cluster.jpg 6 113 211 2022-08-22T04:21:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CRF1100L Front.jpg 6 114 212 2022-08-22T04:22:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Hayabusa Front.jpg 6 115 213 2022-08-22T04:22:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Hayabusa Rear.jpg 6 116 214 2022-08-22T04:22:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Hayabusa Cluster.jpg 6 117 215 2022-08-22T04:22:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:899 Panigale Front.jpg 6 118 216 2022-08-22T04:22:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:899 Panigale Rear.jpg 6 119 217 2022-08-22T04:23:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:899 Panigale Cluster.jpg 6 120 218 2022-08-22T04:23:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:1290 Superduke Front.jpg 6 121 219 2022-08-22T04:23:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:1290 Superduke Rear.jpg 6 122 220 2022-08-22T04:23:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:1290 Superduke Cluster.jpg 6 123 221 2022-08-22T04:23:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 CTM 1290 Superduke 0 124 222 2022-08-22T04:24:35Z S30Z 2 Created page with "{{Carinfo |name=2019 CTM 1290 Superduke |image=1290_Superduke_Front.jpg |make=CTM |type=Motorcycle |price=$68,699 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/KTM_1290_Super_Duke_R |rlname=KTM 1290 Super Duke R |limited=0 }} The 2019 CTM 1290 Superduke is a motorcycle produced by [[CTM]]. It can be purchased from the dealership for $68,699. ==Stats== The 1290 Superduke has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it..." wikitext text/x-wiki {{Carinfo |name=2019 CTM 1290 Superduke |image=1290_Superduke_Front.jpg |make=CTM |type=Motorcycle |price=$68,699 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/KTM_1290_Super_Duke_R |rlname=KTM 1290 Super Duke R |limited=0 }} The 2019 CTM 1290 Superduke is a motorcycle produced by [[CTM]]. It can be purchased from the dealership for $68,699. ==Stats== The 1290 Superduke has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=177|tqval=104|whval=429|spdval=175|drv=RWD}} ==Gallery== <gallery> File:1290_Superduke_Rear.jpg|Rear view of the 2019 CTM 1290 Superduke. File:1290_Superduke_Cluster.jpg|Gauge cluster of the 2019 CTM 1290 Superduke. </gallery> de790da18cf6d1207a2fd6924bc73bae0f7ff9a4 2015 Dacati 899 Panigale 0 125 223 2022-08-22T04:25:04Z S30Z 2 Created page with "{{Carinfo |name=2015 Dacati 899 Panigale |image=899_Panigale_Front.jpg |make=Dacati |type=Motorcycle |price=$50,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ducati_899 |rlname=Ducati 899 Panigale |limited=0 }} The 2015 Dacati 899 Panigale is a motorcycle produced by [[Dacati]]. It can be purchased from the dealership for $50,500. ==Stats== The 899 Panigale has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be..." wikitext text/x-wiki {{Carinfo |name=2015 Dacati 899 Panigale |image=899_Panigale_Front.jpg |make=Dacati |type=Motorcycle |price=$50,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ducati_899 |rlname=Ducati 899 Panigale |limited=0 }} The 2015 Dacati 899 Panigale is a motorcycle produced by [[Dacati]]. It can be purchased from the dealership for $50,500. ==Stats== The 899 Panigale has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=148|tqval=73|whval=425|spdval=150|drv=RWD}} ==Gallery== <gallery> File:899_Panigale_Rear.jpg|Rear view of the 2015 Dacati 899 Panigale. File:899_Panigale_Cluster.jpg|Gauge cluster of the 2015 Dacati 899 Panigale. </gallery> 07c613a34f6be7b40af4160865d6110f4970d3bc 2015 Sozooki Hayabusa 0 126 224 2022-08-22T04:25:36Z S30Z 2 Created page with "{{Carinfo |name=2015 Sozooki Hayabusa |image=Hayabusa_Front.jpg |make=Sozooki |type=Motorcycle |price=$95,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Suzuki_Hayabusa#Second_generation_(2008%E2%80%932020) |rlname=Suzuki Hayabusa (2nd gen.) |limited=0 }} The 2015 Sozooki Hayabusa is a motorcycle produced by [[Sozooki]]. It can be purchased from the dealership for $95,450. ==Stats== The Hayabusa has 1 seat and a fuel capacity of 4..." wikitext text/x-wiki {{Carinfo |name=2015 Sozooki Hayabusa |image=Hayabusa_Front.jpg |make=Sozooki |type=Motorcycle |price=$95,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Suzuki_Hayabusa#Second_generation_(2008%E2%80%932020) |rlname=Suzuki Hayabusa (2nd gen.) |limited=0 }} The 2015 Sozooki Hayabusa is a motorcycle produced by [[Sozooki]]. It can be purchased from the dealership for $95,450. ==Stats== The Hayabusa has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=197|tqval=114|whval=586|spdval=195|drv=RWD}} ==Gallery== <gallery> File:Hayabusa_Rear.jpg|Rear view of the 2015 Sozooki Hayabusa. File:Hayabusa_Cluster.jpg|Gauge cluster of the 2015 Sozooki Hayabusa. </gallery> 4405726ab207e82718a8e7dc87706721b95b38ae 2018 Handa CRF1100L 0 127 225 2022-08-22T04:26:02Z S30Z 2 Created page with "{{Carinfo |name=2018 Handa CRF1100L |image=CRF1100L_Front.jpg |make=Handa |type=Motorcycle |price=$42,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Africa_Twin#CRF1000L%2FCRF1100L= |rlname=Honda CRF1100L |limited=0 }} The 2018 Handa CRF1100L is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $42,999. ==Stats== The CRF1100L has 1 seat and a fuel capacity of 6 gallons. As a motorcycle, it cannot..." wikitext text/x-wiki {{Carinfo |name=2018 Handa CRF1100L |image=CRF1100L_Front.jpg |make=Handa |type=Motorcycle |price=$42,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Africa_Twin#CRF1000L%2FCRF1100L= |rlname=Honda CRF1100L |limited=0 }} The 2018 Handa CRF1100L is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $42,999. ==Stats== The CRF1100L has 1 seat and a fuel capacity of 6 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=93|tqval=73|whval=503|spdval=150|drv=RWD}} ==Gallery== <gallery> File:CRF1100L_Rear.jpg|Rear view of the 2018 Handa CRF1100L. File:CRF1100L_Cluster.jpg|Gauge cluster of the 2018 Handa CRF1100L. </gallery> 642f304340604092ce1d11c9b2ae4e36787e3aa0 2020 Yamiiha YZF-R1 0 128 226 2022-08-22T04:26:37Z S30Z 2 Created page with "{{Carinfo |name=2020 Yamiiha YZF-R1 |image=YZF-R1_Front.jpg |make=Yamiiha |type=Motorcycle |price=$36,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_YZF-R1 |rlname=Yamaha YZF-R1 |limited=0 }} The 2020 Yamiiha YZF-R1 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $36,999. ==Stats== The YZF-R1 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats..." wikitext text/x-wiki {{Carinfo |name=2020 Yamiiha YZF-R1 |image=YZF-R1_Front.jpg |make=Yamiiha |type=Motorcycle |price=$36,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_YZF-R1 |rlname=Yamaha YZF-R1 |limited=0 }} The 2020 Yamiiha YZF-R1 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $36,999. ==Stats== The YZF-R1 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=200|tqval=83|whval=448|spdval=185|drv=RWD}} ==Gallery== <gallery> File:YZF-R1_Rear.jpg|Rear view of the 2020 Yamiiha YZF-R1. File:YZF-R1_Cluster.jpg|Gauge cluster of the 2020 Yamiiha YZF-R1. </gallery> 7e331f680be9e04b0ed149f9a119fe388ee1a088 2021 Conquest Street Triple RS 0 129 227 2022-08-22T04:27:11Z S30Z 2 Created page with "{{Carinfo |name=2021 Conquest Street Triple RS |image=Street_Triple_RS_Front.jpg |make=Conquest |type=Motorcycle |price=$32,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Street_Triple |rlname=Triumph Street Triple RS |limited=0 }} The 2021 Conquest Street Triple RS is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $32,850. ==Stats== The Street Triple RS has 1 seat and a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=2021 Conquest Street Triple RS |image=Street_Triple_RS_Front.jpg |make=Conquest |type=Motorcycle |price=$32,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Street_Triple |rlname=Triumph Street Triple RS |limited=0 }} The 2021 Conquest Street Triple RS is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $32,850. ==Stats== The Street Triple RS has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=121|tqval=58|whval=419|spdval=150|drv=RWD}} ==Gallery== <gallery> File:Street_Triple_RS_Rear.jpg|Rear view of the 2021 Conquest Street Triple RS. File:Street_Triple_RS_Cluster.jpg|Gauge cluster of the 2021 Conquest Street Triple RS. </gallery> c18998d918f4bf34a3379553dfed89cebe7ba13e 2019 Kawisake ZX-10R SE 0 130 228 2022-08-22T04:27:40Z S30Z 2 Created page with "{{Carinfo |name=2019 Kawisake ZX-10R SE |image=ZX-10R_SE_Front.jpg |make=Kawisake |type=Motorcycle |price=$38,399 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-10R |rlname=Kawasaki Ninja ZX-10R SE |limited=0 }} The 2019 Kawisake ZX-10R SE is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $38,399. ==Stats== The ZX-10R SE has 1 seat and a fuel capacity of 4 gallons. As a motorcycle,..." wikitext text/x-wiki {{Carinfo |name=2019 Kawisake ZX-10R SE |image=ZX-10R_SE_Front.jpg |make=Kawisake |type=Motorcycle |price=$38,399 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-10R |rlname=Kawasaki Ninja ZX-10R SE |limited=0 }} The 2019 Kawisake ZX-10R SE is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $38,399. ==Stats== The ZX-10R SE has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=200|tqval=84|whval=454|spdval=185|drv=RWD}} ==Gallery== <gallery> File:ZX-10R_SE_Rear.jpg|Rear view of the 2019 Kawisake ZX-10R SE File:ZX-10R_SE_Cluster.jpg|Gauge cluster of the 2019 Kawisake ZX-10R SE. </gallery> a467815e66eb9b6dbbcce65abe97741d777d2a4f BNW 0 131 229 2022-08-22T04:32:36Z S30Z 2 Created page with "{{Makeinfo|makename=BNW|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/BMW|rlname=BMW}} BNW is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/BMW BMW.] == Vehicles by BNW == You can find a list of all vehicles by BNW [[:Category:BNW|here.]]" wikitext text/x-wiki {{Makeinfo|makename=BNW|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/BMW|rlname=BMW}} BNW is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/BMW BMW.] == Vehicles by BNW == You can find a list of all vehicles by BNW [[:Category:BNW|here.]] 05b3b1518f43c09e8a7929450b834f3ce4c2f07f 233 229 2022-08-22T04:38:52Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=BNW|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/BMW|rlname=BMW}} BNW is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/BMW BMW.] == Vehicles by BNW == You can find a list of all vehicles by BNW [[:Category:BNW|here.]] 4627a795dc2e3609243f45dc74dc6d7865c78932 246 233 2022-08-22T05:30:10Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=BNW|makeimage=BNW_Logo.png|rllink=https://en.wikipedia.org/wiki/BMW|rlname=BMW}} BNW is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/BMW BMW.] == Vehicles by BNW == You can find a list of all vehicles by BNW [[:Category:BNW|here.]] 7d017f8015d932b22b09f80ec7229de94bc6a532 Category:BNW 14 132 230 2022-08-22T04:33:15Z S30Z 2 Created page with "All BNW vehicles in Southwest Florida." wikitext text/x-wiki All BNW vehicles in Southwest Florida. 644ab16d06bd1aaafe2fa176bbfef339b5aeaa6a Conquest 0 133 231 2022-08-22T04:36:43Z S30Z 2 Created page with "{{Makeinfo|makename=Conquest|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Triumph_Motorcycles_Ltd|rlname=Triumph Motorcycles}} Conquest is a fictional motorcycle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Triumph_Motorcycles_Ltd Triumph Motorcycles.] == Vehicles by Conquest == You can find a list of all vehicles by Conquest [[:Category:Conquest|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Conquest|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Triumph_Motorcycles_Ltd|rlname=Triumph Motorcycles}} Conquest is a fictional motorcycle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Triumph_Motorcycles_Ltd Triumph Motorcycles.] == Vehicles by Conquest == You can find a list of all vehicles by Conquest [[:Category:Conquest|here.]] a39994ed3adeff97e0f16b6297feae2f068c9771 CTM 0 134 232 2022-08-22T04:38:27Z S30Z 2 Created page with "{{Makeinfo|makename=CTM|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/KTM|rlname=KTM}} CTM is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/KTM KTM.] == Vehicles by CTM == You can find a list of all vehicles by CTM [[:Category:CTM|here.]]" wikitext text/x-wiki {{Makeinfo|makename=CTM|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/KTM|rlname=KTM}} CTM is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/KTM KTM.] == Vehicles by CTM == You can find a list of all vehicles by CTM [[:Category:CTM|here.]] af7eb7ebd14158cb2d11e4a7e4bff74ef7bcb301 Dacati 0 135 234 2022-08-22T04:41:24Z S30Z 2 Created page with "{{Makeinfo|makename=Dacati|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ducati_Motor_Holding|rlname=Ducati}} Dacati is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ducati_Motor_Holding Ducati.] == Vehicles by Dacati == You can find a list of all vehicles by Dacati [[:Category:Dacati|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Dacati|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ducati_Motor_Holding|rlname=Ducati}} Dacati is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ducati_Motor_Holding Ducati.] == Vehicles by Dacati == You can find a list of all vehicles by Dacati [[:Category:Dacati|here.]] 913a4234dbaddeb4e04e00a3aa1d5de1476bcb69 Handa 0 136 235 2022-08-22T04:42:39Z S30Z 2 Created page with "{{Makeinfo|makename=Handa|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Honda|rlname=Honda}} Handa is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Honda Honda.] == Vehicles by Handa == You can find a list of all vehicles by Handa [[:Category:Handa|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Handa|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Honda|rlname=Honda}} Handa is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Honda Honda.] == Vehicles by Handa == You can find a list of all vehicles by Handa [[:Category:Handa|here.]] 0f0c4b12ead5c78d12b929974b624641e5daa1db 245 235 2022-08-22T05:29:54Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Handa|makeimage=Handa_Logo.png|rllink=https://en.wikipedia.org/wiki/Honda|rlname=Honda}} Handa is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Honda Honda.] == Vehicles by Handa == You can find a list of all vehicles by Handa [[:Category:Handa|here.]] f916d86c733cd01982cc5e856695199b1824e622 Hardley-Movinson 0 137 236 2022-08-22T04:43:59Z S30Z 2 Created page with "{{Makeinfo|makename=Hardley-Movinson|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Harley-Davidson|rlname=Harley-Davidson}} Hardley-Movinson is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Harley-Davidson Harley-Davidson.] == Vehicles by Hardley-Movinson == You can find a list of all vehicles by Hardley-Movinson [[:Category:Hardley-Movinson|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Hardley-Movinson|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Harley-Davidson|rlname=Harley-Davidson}} Hardley-Movinson is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Harley-Davidson Harley-Davidson.] == Vehicles by Hardley-Movinson == You can find a list of all vehicles by Hardley-Movinson [[:Category:Hardley-Movinson|here.]] cbb7c39c687d56f6bfdfc1d4fea4e29291bc3a0a Hoosqvarna 0 138 237 2022-08-22T04:45:18Z S30Z 2 Created page with "{{Makeinfo|makename=Hoosqvarna|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Husqvarna_Motorcycles|rlname=Husqvarna Motorcycles}} Hoosqvarna is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Husqvarna_Motorcycles Husqvarna Motorcycles.] == Vehicles by Hoosqvarna == You can find a list of all vehicles by Hoosqvarna [[:Category:Hoosqvarna|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Hoosqvarna|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Husqvarna_Motorcycles|rlname=Husqvarna Motorcycles}} Hoosqvarna is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Husqvarna_Motorcycles Husqvarna Motorcycles.] == Vehicles by Hoosqvarna == You can find a list of all vehicles by Hoosqvarna [[:Category:Hoosqvarna|here.]] 132a6aa6cb9dc363a51539dbe0c36d26cc3935fe Kawisake 0 139 238 2022-08-22T04:46:38Z S30Z 2 Created page with "{{Makeinfo|makename=Kawisake|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Kawasaki_motorcycles|rlname=Kawasaki}} Kawisake is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Kawasaki_motorcycles Kawasaki.] == Vehicles by Kawisake == You can find a list of all vehicles by Kawisake [[:Category:Kawisake|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Kawisake|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Kawasaki_motorcycles|rlname=Kawasaki}} Kawisake is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Kawasaki_motorcycles Kawasaki.] == Vehicles by Kawisake == You can find a list of all vehicles by Kawisake [[:Category:Kawisake|here.]] a24f2fe01373db858fe540df1d50a013409c83ed Sozooki 0 140 239 2022-08-22T04:47:31Z S30Z 2 Created page with "{{Makeinfo|makename=Sozooki|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Suzuki|rlname=Suzuki}} Sozooki is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Suzuki Suzuki.] == Vehicles by Sozooki == You can find a list of all vehicles by Sozooki [[:Category:Sozooki|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Sozooki|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Suzuki|rlname=Suzuki}} Sozooki is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Suzuki Suzuki.] == Vehicles by Sozooki == You can find a list of all vehicles by Sozooki [[:Category:Sozooki|here.]] 6c645c42918678102fd3745806546f1b29f2d341 Yamiiha 0 141 240 2022-08-22T04:48:20Z S30Z 2 Created page with "{{Makeinfo|makename=Yamiiha|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Yamaha_Motor_Company|rlname=Yamaha}} Yamiiha is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Yamaha_Motor_Company Yamaha.] == Vehicles by Yamiiha == You can find a list of all vehicles by Yamiiha [[:Category:Yamiiha|here.]]" wikitext text/x-wiki {{Makeinfo|makename=Yamiiha|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Yamaha_Motor_Company|rlname=Yamaha}} Yamiiha is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Yamaha_Motor_Company Yamaha.] == Vehicles by Yamiiha == You can find a list of all vehicles by Yamiiha [[:Category:Yamiiha|here.]] 6855e20737bd2d39850929e832fbd181167852e4 248 240 2022-08-22T05:40:25Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Yamiiha|makeimage=Yamiiha_Logo.png|rllink=https://en.wikipedia.org/wiki/Yamaha_Motor_Company|rlname=Yamaha}} Yamiiha is a fictional vehicle company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Yamaha_Motor_Company Yamaha.] == Vehicles by Yamiiha == You can find a list of all vehicles by Yamiiha [[:Category:Yamiiha|here.]] be8e9acc620467d75835cd8d553eb11196b94738 Category:Classic 14 142 241 2022-08-22T05:04:39Z S30Z 2 Created page with "All classic vehicles in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All classic vehicles in Southwest Florida. [[Category: Vehicles]] f74e60642be034802c924dba44b5c57302492155 File:Handa Logo.png 6 143 243 2022-08-22T05:29:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BNW Logo.png 6 144 244 2022-08-22T05:29:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Yamiiha Logo.png 6 145 247 2022-08-22T05:40:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Category:Yamiiha 14 146 249 2022-08-22T05:41:05Z S30Z 2 Created page with "All Yamiiha vehicles in Southwest Florida." wikitext text/x-wiki All Yamiiha vehicles in Southwest Florida. 69aada7891aed18632558a151ff4436d37dac6ad File:Toyoto Logo.png 6 22 250 43 2022-08-22T05:51:47Z S30Z 2 S30Z uploaded a new version of [[File:Toyoto Logo.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Category:Handa 14 147 251 2022-08-22T05:55:10Z S30Z 2 Created page with "All Handa vehicles in Southwest Florida." wikitext text/x-wiki All Handa vehicles in Southwest Florida. 539a645c263c30228c4fe7454acf4a9ede5c75b1 File:GT86 Front.jpg 6 148 252 2022-08-22T07:08:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT86 Rear.jpg 6 149 253 2022-08-22T07:09:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2021 Mustang GT Front.jpg 6 150 254 2022-08-22T07:09:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2021 Mustang GT Rear.jpg 6 151 255 2022-08-22T07:09:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Toyoto GT86 0 152 256 2022-08-22T07:10:20Z S30Z 2 Created page with " {{Carinfo |name=2019 Toyoto GT86 |image=GT86_Front.jpg |make=Toyoto |type=Coupe |price=$26,655 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_86#First_generation_(ZN6/ZC6;_2012) |rlname=Toyota 86 |limited=0 }} The 2019 Toyoto GT86 is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $26,655. ==Stats== The GT86 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=204|tqval=192|whv..." wikitext text/x-wiki {{Carinfo |name=2019 Toyoto GT86 |image=GT86_Front.jpg |make=Toyoto |type=Coupe |price=$26,655 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_86#First_generation_(ZN6/ZC6;_2012) |rlname=Toyota 86 |limited=0 }} The 2019 Toyoto GT86 is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $26,655. ==Stats== The GT86 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=204|tqval=192|whval=2776|spdval=135|drv=RWD}} {{Maxstats|hpval=1049|tqval=1141|whval=2258|spdval=163}} ==Gallery== <gallery> File:GT86_Rear.jpg|Rear view of the 2019 Toyoto GT86. </gallery> 595f1db4986dbb33ad5762110c54492f6adcf404 2022 Fard Mustang GT 0 153 257 2022-08-22T07:10:49Z S30Z 2 Created page with " {{Carinfo |name=2021 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 }} The 2021 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 }} The 2021 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=150|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2021 Fard Mustang GT. </gallery> 51a99472146e240d74e9a3b45a044c86e0304d09 Template:Carinfo 10 25 258 128 2022-08-22T07:12:45Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 892889afc747ed75370c5fc4ca061bd17e20f953 Template:Makeinfo 10 28 259 111 2022-08-22T07:13:44Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Car Companies]] </includeonly> <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage": { "label": "Company logo image", "example": "Mazday_Logo.png", "required": true }, "rllink": { "label": "Real-life counterpart Wikipedia link", "example": "https://en.wikipedia.org/wiki/Mazda", "required": true }, "rlname": { "label": "Real-life counterpart name", "example": "Mazda", "required": true } }, "description": "Car company info box" } </templatedata> </noinclude> e0334deffd7bf78ba308685648218fa84be214fd File:Fard Logo.png 6 154 260 2022-08-22T08:21:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 262 260 2022-08-22T08:31:04Z S30Z 2 S30Z uploaded a new version of [[File:Fard Logo.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Fard 0 68 261 159 2022-08-22T08:21:38Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Fard|makeimage=Fard_Logo.png|rllink=https://en.wikipedia.org/wiki/Ford_Motor_Company|rlname=Ford (Ford Motor Company)}} Fard is a fictional car manufacture in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ford_Motor_Company Ford (Ford Motor Company).] == Vehicles made by Fard == You can find a list of all vehicles by Fard [[:Category:Fard|here]]. 61bef87079bf0b263c82ff4113cc853638f800d1 File:Maverick Front.jpg 6 155 263 2022-08-22T08:53:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Maverick Rear.jpg 6 156 264 2022-08-22T08:53:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard Maverick Lariat 0 157 265 2022-08-22T08:54:31Z S30Z 2 Created page with " {{Carinfo |name=2022 Fard Maverick Lariat |image=Maverick_Front.jpg |make=Fard |type=Pickup |price=$32,255 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Maverick_(2022) |rlname=Ford Maverick |limited=0 }} The 2022 Fard Maverick Lariat is a four door pickup produced by [[Fard]]. It can be purchased from the dealership for $32,255. ==Stats== The Maverick has 8 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=250|tqval=..." wikitext text/x-wiki {{Carinfo |name=2022 Fard Maverick Lariat |image=Maverick_Front.jpg |make=Fard |type=Pickup |price=$32,255 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Maverick_(2022) |rlname=Ford Maverick |limited=0 }} The 2022 Fard Maverick Lariat is a four door pickup produced by [[Fard]]. It can be purchased from the dealership for $32,255. ==Stats== The Maverick has 8 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=250|tqval=277|whval=3731|spdval=115|drv=AWD}} {{Maxstats|hpval=1013|tqval=2114|whval=3231|spdval=200}} ==Gallery== <gallery> File:Maverick_Rear.jpg|Rear view of the 2022 Fard Maverick Lariat. </gallery> 6970c00e90bdd8f61a4f0d50d9a912dcad8901ef Category:Pickup 14 158 266 2022-08-22T09:09:12Z S30Z 2 Created page with "All pickup trucks in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All pickup trucks in Southwest Florida. [[Category: Vehicles]] a08ff118def38dd4061597dcebceb72dac454f90 File:G82m4 front.jpg 6 159 267 2022-08-22T22:47:01Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G82m4 rear.jpg 6 160 268 2022-08-22T22:47:22Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E46m3 front.jpg 6 161 269 2022-08-22T22:47:46Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E46m3 rear.jpg 6 162 270 2022-08-22T22:48:08Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:1m front.jpg 6 163 271 2022-08-22T22:48:21Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:1m rear.jpg 6 164 272 2022-08-22T22:48:37Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 BNW M4 Competition 0 165 273 2022-08-22T22:58:19Z Cheemsthethird 10 Created page with "{{Carinfo|name=2021 BNW M4 Competition|image=g82m4_front.jpg|make=BNW|type=Coupe|price=$80,600|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_M4#Second_generation_(G82/G83;_2021)|rlname=(G82) 2021 BMW M4 Competition|limited=0}} The BNW M4 Competition is a high-performance 2 door coupe produced by [[BNW]]. It can be purchased from the dealership for $80,600. == Stats == The M4 Competition has 4 seats and a maximum fuel capacity of 16..." wikitext text/x-wiki {{Carinfo|name=2021 BNW M4 Competition|image=g82m4_front.jpg|make=BNW|type=Coupe|price=$80,600|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_M4#Second_generation_(G82/G83;_2021)|rlname=(G82) 2021 BMW M4 Competition|limited=0}} The BNW M4 Competition is a high-performance 2 door coupe produced by [[BNW]]. It can be purchased from the dealership for $80,600. == Stats == The M4 Competition has 4 seats and a maximum fuel capacity of 16 gallons. {{Stockstats|hpval=503|tqval=479|whval=3,880|spdval=179|drv=RWD}}{{Maxstats|hpval=1,086|tqval=1,102|whval=3,380|spdval=220}} == Gallery == <gallery> File:G82m4 rear.jpg|The rear view of the 2021 BNW Competition. </gallery> b429c35211b15367ff326b4beafa1810daa2725d 285 273 2022-08-23T00:41:28Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 BNW M4 Competition|image=g82m4_front.jpg|make=BNW|type=Coupe|price=$80,600|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_M4#Second_generation_(G82/G83;_2021)|rlname=(G82) 2021 BMW M4 Competition|limited=0|electric=0}} The BNW M4 Competition is a high-performance 2 door coupe produced by [[BNW]]. It can be purchased from the dealership for $80,600. == Stats == The M4 Competition has 4 seats and a maximum fuel capacity of 16 gallons. {{Stockstats|hpval=503|tqval=479|whval=3,880|spdval=179|drv=RWD}}{{Maxstats|hpval=1,086|tqval=1,102|whval=3,380|spdval=220}} == Gallery == <gallery> File:G82m4 rear.jpg|The rear view of the 2021 BNW Competition. </gallery> fee65c76e3f069948cf453a388ade26bdd2811ff Template:Maxstats 10 27 274 62 2022-08-22T23:03:04Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} Note: Top speed testing is performed with stock suspension, wheel width, drivetrain, differential, and gearing settings. You will likely be able to achieve a better top speed through further tuning. <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> dfbb8768d15fdb210200575a2e004b9a238cc5c4 320 274 2022-08-23T01:38:01Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} Note: Top speed testing is performed with stock suspension, wheel width, drivetrain, differential, and gearing settings. You will likely be able to achieve a better top speed through further tuning (if possible). <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> e3a3177737a1991d98e6810c8eb5cb5724d569e3 2004 BNW M3 0 166 275 2022-08-22T23:09:05Z Cheemsthethird 10 Created page with "{{Carinfo|name=2004 BNW M3|image=e46m3_front.jpg|make=BNW|type=Coupe|price=$38,250|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_M3#E46_generation_(2000–2006)|rlname=(E46) 2004 BMW M3|limited=0}} The iconic BNW M3 is a high-performance 2-door 2+2 coupe produced by [[BNW]]. It can be purchased from the dealership for $38,250. == Stats == The M3 has 5 seats including the central seat and it has a maximum fuel capacity of 14 gallons..." wikitext text/x-wiki {{Carinfo|name=2004 BNW M3|image=e46m3_front.jpg|make=BNW|type=Coupe|price=$38,250|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_M3#E46_generation_(2000–2006)|rlname=(E46) 2004 BMW M3|limited=0}} The iconic BNW M3 is a high-performance 2-door 2+2 coupe produced by [[BNW]]. It can be purchased from the dealership for $38,250. == Stats == The M3 has 5 seats including the central seat and it has a maximum fuel capacity of 14 gallons. {{Stockstats|hpval=333|tqval=262|whval=3,415|spdval=177|drv=RWD}}{{Maxstats|hpval=980|tqval=792|whval=2,192|spdval=210}} == Gallery == <gallery> File:E46m3 rear.jpg|The rear view of the 2004 BNW M3. </gallery> c5e46a65f181d31a11bb364fbe15149e8a80636e 282 275 2022-08-23T00:41:04Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2004 BNW M3|image=e46m3_front.jpg|make=BNW|type=Coupe|price=$38,250|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_M3#E46_generation_(2000–2006)|rlname=(E46) 2004 BMW M3|limited=0|electric=0}} The iconic BNW M3 is a high-performance 2-door 2+2 coupe produced by [[BNW]]. It can be purchased from the dealership for $38,250. == Stats == The M3 has 5 seats including the central seat and it has a maximum fuel capacity of 14 gallons. {{Stockstats|hpval=333|tqval=262|whval=3,415|spdval=177|drv=RWD}}{{Maxstats|hpval=980|tqval=792|whval=2,192|spdval=210}} == Gallery == <gallery> File:E46m3 rear.jpg|The rear view of the 2004 BNW M3. </gallery> 6753f478b81de812f9f3ee1f29c8b5c366332119 2011 BNW 1M 0 167 276 2022-08-22T23:18:31Z Cheemsthethird 10 Created page with "{{Carinfo|name=2011 BNW 1M|image=1m_front.jpg|make=BNW|type=Coupe|price=$79,975|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_1_Series_(E87)#1_Series_M_Coupé|rlname=2011 BMW 1 Series M Coupe (E82)|limited=0}} The 2011 BNW 1M is a 2-door sports-coupe produced by [[BNW]], and it can be purchased from the dealership for $79,975. == Stats == The 1M has 4 seats and a maximum fuel capacity of 14 gallons. {{Stockstats|hpval=335|tqval=332..." wikitext text/x-wiki {{Carinfo|name=2011 BNW 1M|image=1m_front.jpg|make=BNW|type=Coupe|price=$79,975|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_1_Series_(E87)#1_Series_M_Coupé|rlname=2011 BMW 1 Series M Coupe (E82)|limited=0}} The 2011 BNW 1M is a 2-door sports-coupe produced by [[BNW]], and it can be purchased from the dealership for $79,975. == Stats == The 1M has 4 seats and a maximum fuel capacity of 14 gallons. {{Stockstats|hpval=335|tqval=332|whval=3,296|spdval=163|drv=RWD}}{{Maxstats|hpval=928|tqval=695|whval=2,796|spdval=221}} == Gallery == <gallery> File:1m rear.jpg|The rear view of the 2011 BNW 1M. </gallery> 9abd240ea1ebf238288038bf79b620dd1694205d 283 276 2022-08-23T00:41:13Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2011 BNW 1M|image=1m_front.jpg|make=BNW|type=Coupe|price=$79,975|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/BMW_1_Series_(E87)#1_Series_M_Coupé|rlname=2011 BMW 1 Series M Coupe (E82)|limited=0|electric=0}} The 2011 BNW 1M is a 2-door sports-coupe produced by [[BNW]], and it can be purchased from the dealership for $79,975. == Stats == The 1M has 4 seats and a maximum fuel capacity of 14 gallons. {{Stockstats|hpval=335|tqval=332|whval=3,296|spdval=163|drv=RWD}}{{Maxstats|hpval=928|tqval=695|whval=2,796|spdval=221}} == Gallery == <gallery> File:1m rear.jpg|The rear view of the 2011 BNW 1M. </gallery> 8f20d0f04afa6aee302ab1c3e2c926d8ae32e5a3 File:Corolla Morizo Front.jpg 6 168 277 2022-08-23T00:11:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Corolla Morizo Rear.jpg 6 169 278 2022-08-23T00:11:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Toyoto GR Corolla Morizo Edition 0 170 279 2022-08-23T00:12:32Z S30Z 2 Created page with "{{Carinfo |name=2023 Toyoto GR Corolla Morizo Edition |image=Corolla_Morizo_Front.jpg |make=Toyoto |type=Hatchback |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Morizo Edition |limited=1 }} The 2023 Toyoto Corolla GR Morizo Edition is a five door hatchback produced by [[Toyoto]]. It is a limited vehicle that was added on June 11, 2022. It was available for 48 hours and can no longer be purchased. ==Stats..." wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Morizo Edition |image=Corolla_Morizo_Front.jpg |make=Toyoto |type=Hatchback |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Morizo Edition |limited=1 }} The 2023 Toyoto Corolla GR Morizo Edition is a five door hatchback produced by [[Toyoto]]. It is a limited vehicle that was added on June 11, 2022. It was available for 48 hours and can no longer be purchased. ==Stats== The GR Corolla Morizo Edition has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=295|whval=3186|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1076|whval=2686|spdval=166}} ==Gallery== <gallery> File:Corolla_Morizo_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Morizo Edition. </gallery> dbac8c132dc79677e006665c9218df19203c3180 308 279 2022-08-23T00:44:39Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Morizo Edition |image=Corolla_Morizo_Front.jpg |make=Toyoto |type=Hatchback |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Morizo Edition |limited=1 |electric=0 }} The 2023 Toyoto Corolla GR Morizo Edition is a five door hatchback produced by [[Toyoto]]. It is a limited vehicle that was added on June 11, 2022. It was available for 48 hours and can no longer be purchased. ==Stats== The GR Corolla Morizo Edition has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=295|whval=3186|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1076|whval=2686|spdval=166}} ==Gallery== <gallery> File:Corolla_Morizo_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Morizo Edition. </gallery> b5c12305a942af194c0c4282dae2a5c44ce43e6c Template:Carinfo 10 25 280 258 2022-08-23T00:40:07Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 71536a08144f2cf2f89b3d44cc54f2ef905a5e8c 2013 Fard Mustang GT500 Super Snake 0 76 281 173 2022-08-23T00:40:40Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image='13mustanggt500_front.jpg|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0|electric=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:'13mustanggt500 rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT500 Super Snake.]] [[File:'13mustanggt500 radiator.jpg|center|thumb|"Super Snake" written on the radiator of the GT500 Super Snake]] 2fe23a3e4be0746178c33f05a94b3ce2cbb5f6bd 2020 BNW S1000RR 0 97 284 193 2022-08-23T00:41:21Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 BNW S1000RR |image=S1000RR_Front.jpg |make=BNW |type=Motorcycle |price=$195,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_S1000RR |rlname=BMW S1000RR |limited=0 |electric=0 }} The 2020 BNW S1000RR is a motorcycle produced by [[BNW]]. It can be purchased from the dealership for $195,995. ==Stats== The S1000RR has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=207|tqval=83|whval=434|spdval=190|drv=RWD}} ==Gallery== <gallery> File:S1000RR_Rear.jpg|Rear view of the 2020 BNW S1000RR. File:S1000RR_Cluster.jpg|Gauge cluster of the 2020 BNW S1000RR. </gallery> 9a700e20290aae88f1baf251373eaf281095046c 2016 Conquest Bonneville T120 0 100 286 196 2022-08-23T00:41:35Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Conquest Bonneville T120 |image=T120_Front.jpg |make=Conquest |type=Motorcycle |price=$41,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Bonneville_T120_1200 |rlname=Triumph Bonneville T120 1200 |limited=0 |electric=0 }} The 2016 Conquest Bonneville T120 is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $41,499. ==Stats== The Bonneville T120 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=80|tqval=77|whval=494|spdval=140|drv=RWD}} ==Gallery== <gallery> File:T120_Rear.jpg|Rear view of the 2016 Conquest Bonneville T120. File:T120_Cluster.jpg|Gauge cluster of the 2016 Conquest Bonneville T120. </gallery> b9c23ad47bacaa3cc8dfbe26b13abcdb066b68a6 2021 Conquest Street Triple RS 0 129 287 227 2022-08-23T00:41:43Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Conquest Street Triple RS |image=Street_Triple_RS_Front.jpg |make=Conquest |type=Motorcycle |price=$32,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Street_Triple |rlname=Triumph Street Triple RS |limited=0 |electric=0 }} The 2021 Conquest Street Triple RS is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $32,850. ==Stats== The Street Triple RS has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=121|tqval=58|whval=419|spdval=150|drv=RWD}} ==Gallery== <gallery> File:Street_Triple_RS_Rear.jpg|Rear view of the 2021 Conquest Street Triple RS. File:Street_Triple_RS_Cluster.jpg|Gauge cluster of the 2021 Conquest Street Triple RS. </gallery> 1adab3b56e2915230c5923203efa52ee4aab1bbf 2019 CTM 1290 Superduke 0 124 288 222 2022-08-23T00:41:49Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 CTM 1290 Superduke |image=1290_Superduke_Front.jpg |make=CTM |type=Motorcycle |price=$68,699 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/KTM_1290_Super_Duke_R |rlname=KTM 1290 Super Duke R |limited=0 |electric=0 }} The 2019 CTM 1290 Superduke is a motorcycle produced by [[CTM]]. It can be purchased from the dealership for $68,699. ==Stats== The 1290 Superduke has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=177|tqval=104|whval=429|spdval=175|drv=RWD}} ==Gallery== <gallery> File:1290_Superduke_Rear.jpg|Rear view of the 2019 CTM 1290 Superduke. File:1290_Superduke_Cluster.jpg|Gauge cluster of the 2019 CTM 1290 Superduke. </gallery> 072ffd0da8e1bdf3705771287f2c6937da77f302 2015 Dacati 899 Panigale 0 125 289 223 2022-08-23T00:41:57Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2015 Dacati 899 Panigale |image=899_Panigale_Front.jpg |make=Dacati |type=Motorcycle |price=$50,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ducati_899 |rlname=Ducati 899 Panigale |limited=0 |electric=0 }} The 2015 Dacati 899 Panigale is a motorcycle produced by [[Dacati]]. It can be purchased from the dealership for $50,500. ==Stats== The 899 Panigale has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=148|tqval=73|whval=425|spdval=150|drv=RWD}} ==Gallery== <gallery> File:899_Panigale_Rear.jpg|Rear view of the 2015 Dacati 899 Panigale. File:899_Panigale_Cluster.jpg|Gauge cluster of the 2015 Dacati 899 Panigale. </gallery> 490c8365e16c37cbdf95b277fd919404e1197f7d 2013 Fard Mustang GT 0 66 290 160 2022-08-23T00:42:07Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT|image='13mustanggt_front.jpg|make=Fard|type=Coupe|price=$26,550|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT (S-197 II)|limited=0|electric=0}} The 2013 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $26,550. == Stats == The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}}{{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustanggt rear.jpg|left|thumb|Rear view of the 2013 Fard Mustang GT. ]] 1a6ca56517b12180517df82bdbfc5da5154aaaf5 2013 Fard Mustang GT Convertible 0 73 291 167 2022-08-23T00:42:16Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT Convertible|image='13mustangvert_front.jpg|make=Fard|type=Coupe|price=$29,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT Convertible (S-197 II)|limited=0|electric=0}} The 2013 Fard Mustang GT Convertible is a two door coupe with a convertible top produced by [[Fard]]. It is the convertible variant of the [[2013 Fard Mustang GT]] and it can be purchased from the dealership for $29,998. {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}}{{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustangvert rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT Convertible.]] [[File:'13mustangvert topdown.jpg|center|thumb|The 2013 Fard Mustang GT Convertible with the convertible top down.]] cdfde6576f784ea591ef216730191487953bc211 2022 Fard Mustang GT 0 153 292 257 2022-08-23T00:42:23Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=150|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2021 Fard Mustang GT. </gallery> 22649d391f85776f8a83edbbed2149839ceddb58 2022 Fard Maverick Lariat 0 157 293 265 2022-08-23T00:42:30Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Fard Maverick Lariat |image=Maverick_Front.jpg |make=Fard |type=Pickup |price=$32,255 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Maverick_(2022) |rlname=Ford Maverick |limited=0 |electric=0 }} The 2022 Fard Maverick Lariat is a four door pickup produced by [[Fard]]. It can be purchased from the dealership for $32,255. ==Stats== The Maverick has 8 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=250|tqval=277|whval=3731|spdval=115|drv=AWD}} {{Maxstats|hpval=1013|tqval=2114|whval=3231|spdval=200}} ==Gallery== <gallery> File:Maverick_Rear.jpg|Rear view of the 2022 Fard Maverick Lariat. </gallery> 6c2709068323223dbfc8c6cbe17078a6e9f18c9b 2018 Handa CRF1100L 0 127 294 225 2022-08-23T00:42:38Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2018 Handa CRF1100L |image=CRF1100L_Front.jpg |make=Handa |type=Motorcycle |price=$42,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Africa_Twin#CRF1000L%2FCRF1100L= |rlname=Honda CRF1100L |limited=0 |electric=0 }} The 2018 Handa CRF1100L is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $42,999. ==Stats== The CRF1100L has 1 seat and a fuel capacity of 6 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=93|tqval=73|whval=503|spdval=150|drv=RWD}} ==Gallery== <gallery> File:CRF1100L_Rear.jpg|Rear view of the 2018 Handa CRF1100L. File:CRF1100L_Cluster.jpg|Gauge cluster of the 2018 Handa CRF1100L. </gallery> e6df601c444cd5548e626d51e5c35e77302783fa 2021 Hardley-Movinson Street Rod 0 101 295 197 2022-08-23T00:42:45Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Hardley-Movinson Street Rod |image=Street_Rod_Front.jpg |make=Hardley-Movinson |type=Motorcycle |price=$37,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Harley-Davidson_Street |rlname=Harley-Davidson Street Rod |limited=0 |electric=0 }} The 2021 Hardley-Movinson Street Rod is a motorcycle produced by [[Hardley-Movinson]]. It can be purchased from the dealership for $37,599. ==Stats== The Street Rod has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=64|tqval=47|whval=516|spdval=109|drv=RWD}} ==Gallery== <gallery> File:Street_Rod_Rear.jpg|Rear view of the 2021 Hardley-Movinson Street Rod. File:Street_Rod_Cluster.jpg|Gauge cluster of the 2021 Hardley-Movinson Street Rod. </gallery> 9cf5510d2dc866b3d8f47f82136a7b46668b8fcb 2017 Hoosqvarna 701 Supermoto 0 98 296 194 2022-08-23T00:42:57Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2017 Hoosqvarna 701 Supermoto |image=701_Supermoto_Front.jpg |make=Hoosqvarna |type=Motorcycle |price=$36,999 |avail=Can be purchased at the dealership |rllink=https://www.cyclechaos.com/wiki/Husqvarna_701_Supermoto |rlname=Husqvarna 701 Supermoto |limited=0 |electric=0 }} The 2017 Hoosqvarna 701 Supermoto is a motorcycle produced by [[Hoosqvarna]]. It can be purchased from the dealership for $36,999. ==Stats== The 701 Supermoto has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=75|tqval=53|whval=333|spdval=125|drv=RWD}} ==Gallery== <gallery> File:701_Supermoto_Rear.jpg|Rear view of the 2017 Hoosqvarna 701 Supermoto. File:701_Supermoto_Cluster.jpg|Gauge cluster of the 2017 Hoosqvarna 701 Supermoto. </gallery> 8749b391cf4203e5d840083b6ec5e73fae2baa0b 2019 Kawisake Ninja H2 0 96 297 192 2022-08-23T00:43:04Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Kawisake Ninja H2 |image=Ninja_H2_Front.jpg |make=Kawisake |type=Motorcycle |price=$229,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_H2 |rlname=Kawasaki Ninja H2 |limited=0 |electric=0 }} The 2019 Kawisake Ninja H2 is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $229,500. ==Stats== The Ninja H2 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=228|tqval=98|whval=529|spdval=200|drv=RWD}} ==Gallery== <gallery> File:Ninja_H2_Rear.jpg|Rear view of the 2019 Kawisake Ninja H2. File:Ninja_H2_Cluster.jpg|Gauge cluster of the 2019 Kawisake Ninja H2. </gallery> b70315fbbad8e7607c261b436368370bac4c0b63 2019 Kawisake ZX-10R SE 0 130 298 228 2022-08-23T00:43:16Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Kawisake ZX-10R SE |image=ZX-10R_SE_Front.jpg |make=Kawisake |type=Motorcycle |price=$38,399 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-10R |rlname=Kawasaki Ninja ZX-10R SE |limited=0 |electric=0 }} The 2019 Kawisake ZX-10R SE is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $38,399. ==Stats== The ZX-10R SE has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=200|tqval=84|whval=454|spdval=185|drv=RWD}} ==Gallery== <gallery> File:ZX-10R_SE_Rear.jpg|Rear view of the 2019 Kawisake ZX-10R SE File:ZX-10R_SE_Cluster.jpg|Gauge cluster of the 2019 Kawisake ZX-10R SE. </gallery> 4dcfebfb7fc678c40eb0985138401be871eea67f 2021 Luxuss LC500 0 48 299 140 2022-08-23T00:43:24Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Luxuss LC500|image=lc500_front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=0|electric=0}} The 2021 Luxuss LC500 is a two door luxury coupe produced by [[Luxuss]]. It can be purchased from the dealership for $102,620. == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} == Gallery == <gallery> File:Lc500 rear.jpg|Rear view of the 2021 Luxuss LC500. File:Lc 500dealer.jpg|The 2021 Luxuss LC500 can also be seen as a display car in the dealership. </gallery> d03687f023a29270de896a54e3fe197f58fc03ed 1990 Mazday Miata 0 31 300 102 2022-08-23T00:43:39Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)|limited=0|electric=0}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Maxstats|hpval=864|tqval=798|whval=1600|spdval=140}} == Gallery == <gallery> File:Miata Rear.jpg|Rear view of the 1990 Mazday Miata </gallery> bb481afc2a6a0cb2c201d298e96c02e46f4f3f88 2021 Mazday3 0 3 301 105 2022-08-23T00:43:47Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Mazday3|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)|rlname=Mazda3 (4th gen.)|limited=0|electric=0}} The 2021 Mazday3 is a five door hatchback produced by [[Mazday|Mazday.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mazday3 has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=252|tqval=310|whval=3383|spdval=145|drv=FWD}}{{Maxstats|hpval=1133|tqval=1073|whval=2883|spdval=234}} ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the 2021 Mazday3. </gallery> 05f293beb93ecbd7ba500cfccbeb6d8aa3af2d41 1998 McFaren F1 0 56 302 200 2022-08-23T00:43:58Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=Screenshot 2022-08-21 185450.png|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1|electric=0}} The [[McFaren]] F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mcfaren rear.png|The rear view of the McFaren F1. </gallery> f08f429bf0e8fbd332375b2dfaecc5282c2c8f1c 2019 Owdi TT-RS 0 37 303 108 2022-08-23T00:44:06Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi TT-RS |image=TT-RS_Front.jpg |make=Owdi |type=Coupe |price=$68,048 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_TT#TT_Mk3_(Type_FV/8S,_2014%E2%80%93present) |rlname=Audi TT-RS (3rd gen.) |limited=0 |electric=0 }} The 2019 Owdi TT-RS is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $68,048. ==Stats== The TT-RS has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=394|tqval=354|whval=3175|spdval=170|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=2675|spdval=253}} ==Gallery== <gallery> File:TT-RS_Rear.jpg|Rear view of the 2019 Owdi TT-RS. </gallery> ff281d632d7f2da4011f8b0355c899311ed879ea 2015 Sozooki Hayabusa 0 126 304 224 2022-08-23T00:44:12Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2015 Sozooki Hayabusa |image=Hayabusa_Front.jpg |make=Sozooki |type=Motorcycle |price=$95,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Suzuki_Hayabusa#Second_generation_(2008%E2%80%932020) |rlname=Suzuki Hayabusa (2nd gen.) |limited=0 |electric=0 }} The 2015 Sozooki Hayabusa is a motorcycle produced by [[Sozooki]]. It can be purchased from the dealership for $95,450. ==Stats== The Hayabusa has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=197|tqval=114|whval=586|spdval=195|drv=RWD}} ==Gallery== <gallery> File:Hayabusa_Rear.jpg|Rear view of the 2015 Sozooki Hayabusa. File:Hayabusa_Cluster.jpg|Gauge cluster of the 2015 Sozooki Hayabusa. </gallery> 77a7f0850cd9b0cd50baf8ac55df95076acac491 2019 Toyoto GT86 0 152 305 256 2022-08-23T00:44:19Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Toyoto GT86 |image=GT86_Front.jpg |make=Toyoto |type=Coupe |price=$26,655 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_86#First_generation_(ZN6/ZC6;_2012) |rlname=Toyota 86 |limited=0 |electric=0 }} The 2019 Toyoto GT86 is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $26,655. ==Stats== The GT86 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=204|tqval=192|whval=2776|spdval=135|drv=RWD}} {{Maxstats|hpval=1049|tqval=1141|whval=2258|spdval=163}} ==Gallery== <gallery> File:GT86_Rear.jpg|Rear view of the 2019 Toyoto GT86. </gallery> 855ed8f5ce5b060718e9ce2e7ef8d816aba29867 2020 Toyoto Camry 0 15 306 106 2022-08-23T00:44:25Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry|image=Toyoto_Camry.jpg|make=Toyoto|type=Sedan|price=Free|avail=Given out to all players|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry (8th gen.)|limited=0|electric=0}} The 2020 Toyoto Camry is a four door sedan produced by [[Toyoto|Toyoto.]] It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=203|tqval=265|whval=3351|spdval=107|drv=FWD}} {{Maxstats|hpval=1045|tqval=1517|whval=2851|spdval=187}} == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> cb41d8e00ccf1e994085a74090db69320d54b794 2020 Toyoto Corolla 0 67 307 163 2022-08-23T00:44:32Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.png|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla|limited=0|electric=0}} The 2020 Toyoto Corolla is a five door hatchback produced by [[Toyoto|Toyoto.]] == Stats == The Vehicle can hold 5 passengers and hold 13 gallons of fuel. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} == Gallery == <gallery> File:2020 Corolla Rear.png|2020 Corolla Rear </gallery> d482244f46f1815cd1b1cc8aac6483cc122fe5e0 2015 Yamiiha FZ-07 0 99 309 195 2022-08-23T00:44:45Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2015 Yamiiha FZ-07 |image=FZ07_Front.jpg |make=Yamiiha |type=Motorcycle |price=$32,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_MT-07 |rlname=Yamaha MT-07 (called FZ-07 in North America until 2017) |limited=0 |electric=0 }} The 2015 Yamiiha FZ-07 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $32,599. ==Stats== The FZ-07 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=75|tqval=50|whval=399|spdval=140|drv=RWD}} ==Gallery== <gallery> File:FZ07_Rear.jpg|Rear view of the 2015 Yamiiha FZ-07. File:FZ07_Cluster.jpg|Gauge cluster of the 2015 Yamiiha FZ-07. </gallery> 7d3a1e171bbbb6ff1c220a3bb398ee7cf846674a 2020 Yamiiha YZF-R1 0 128 310 226 2022-08-23T00:44:50Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Yamiiha YZF-R1 |image=YZF-R1_Front.jpg |make=Yamiiha |type=Motorcycle |price=$36,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_YZF-R1 |rlname=Yamaha YZF-R1 |limited=0 |electric=0 }} The 2020 Yamiiha YZF-R1 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $36,999. ==Stats== The YZF-R1 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=200|tqval=83|whval=448|spdval=185|drv=RWD}} ==Gallery== <gallery> File:YZF-R1_Rear.jpg|Rear view of the 2020 Yamiiha YZF-R1. File:YZF-R1_Cluster.jpg|Gauge cluster of the 2020 Yamiiha YZF-R1. </gallery> 87c2a787e4112ccf93aab8f79d09930858f739fe File:Viper ACR-X Front.jpg 6 171 311 2022-08-23T00:45:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Viper ACR-X Rear.jpg 6 172 312 2022-08-23T00:46:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2010 Dodje Viper SRT-10 ACR-X 0 173 313 2022-08-23T00:47:02Z S30Z 2 Created page with " {{Carinfo |name=2010 Dodje Viper SRT-10 ACR-X |image=Viper_ACR-X_Front.jpg |make=Dodje |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR-X |rlname=Dodge Viper SRT-10 ACR-X |limited=1 |electric=0 }} The 2010 Dodje Viper SRT-10 ACR-X is a two door supercar produced by [[Dodje]]. It is a limited vehicle that was added on June 11, 2022. It was available for 24 hours and can no longer be purchased. ==Stats== The Viper SRT..." wikitext text/x-wiki {{Carinfo |name=2010 Dodje Viper SRT-10 ACR-X |image=Viper_ACR-X_Front.jpg |make=Dodje |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR-X |rlname=Dodge Viper SRT-10 ACR-X |limited=1 |electric=0 }} The 2010 Dodje Viper SRT-10 ACR-X is a two door supercar produced by [[Dodje]]. It is a limited vehicle that was added on June 11, 2022. It was available for 24 hours and can no longer be purchased. ==Stats== The Viper SRT-10 ACR-X has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=640|tqval=585|whval=3190|spdval=190|drv=RWD}} {{Maxstats|hpval=1349|tqval=927|whval=2690|spdval=225}} ==Gallery== <gallery> File:Viper_ACR-X_Rear.jpg|Rear view of the 2010 Dodje Viper SRT-10 ACR-X. </gallery> 3bc08d83806057b55dfc70a669d84300799e3a98 File:MC-12 Front.jpg 6 174 314 2022-08-23T01:00:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:MC-12 Rear.jpg 6 175 315 2022-08-23T01:01:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2005 Mazeri MC-12 0 176 316 2022-08-23T01:01:49Z S30Z 2 Created page with " {{Carinfo |name=2005 Mazeri MC-12 |image=MC-12_Front.jpg |make=Mazeri |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Maserati_MC12 |rlname=Maserati MC12 |limited=1 |electric=0 }} The 2005 Mazeri MC-12 is a two door supercar produced by [[Mazeri]]. It is a limited vehicle that was added on May 29, 2022. It was available for 24 hours and can no longer be purchased. ==Stats== The MC-12 has 2 seats and a fuel capacity of 30 gallons. {{Sto..." wikitext text/x-wiki {{Carinfo |name=2005 Mazeri MC-12 |image=MC-12_Front.jpg |make=Mazeri |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Maserati_MC12 |rlname=Maserati MC12 |limited=1 |electric=0 }} The 2005 Mazeri MC-12 is a two door supercar produced by [[Mazeri]]. It is a limited vehicle that was added on May 29, 2022. It was available for 24 hours and can no longer be purchased. ==Stats== The MC-12 has 2 seats and a fuel capacity of 30 gallons. {{Stockstats|hpval=624|tqval=479|whval=3375|spdval=208|drv=RWD}} {{Maxstats|hpval=1623|tqval=1458|whval=2875|spdval=209}} ==Gallery== <gallery> File:MC-12_Rear.jpg|Rear view of the 2005 Mazeri MC-12. </gallery> 5476e1e533097c7504a6482c163e0bf755020a77 Category:Super 14 177 317 2022-08-23T01:05:19Z S30Z 2 Created page with "All supercars in Southwest Florida. [[Category:Vehicles]]" wikitext text/x-wiki All supercars in Southwest Florida. [[Category:Vehicles]] 6676774e37422dc21299a86806f28a2368127773 File:Mclarenf1alt front.jpg 6 178 318 2022-08-23T01:35:45Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mclarenf1alt rear.jpg 6 179 319 2022-08-23T01:36:18Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1998 McFaren F1 0 56 321 302 2022-08-23T01:39:09Z Cheemsthethird 10 /* Stats */ wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=mclarenf1alt_front.jpg|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1|electric=0}} The [[McFaren]] F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mclarenf1alt rear.jpg|The rear view of the McFaren F1. </gallery> 522f2404d75136d92c1c54e4b2ea59f7e7b168de File:'13mustanggt front.jpg 6 60 322 147 2022-08-23T01:41:08Z Cheemsthethird 10 Cheemsthethird uploaded a new version of [[File:'13mustanggt front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:'13mustanggt rear.jpg 6 61 323 148 2022-08-23T01:41:55Z Cheemsthethird 10 Cheemsthethird uploaded a new version of [[File:'13mustanggt rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:'13mustangvert front.jpg 6 70 324 164 2022-08-23T01:43:27Z Cheemsthethird 10 Cheemsthethird uploaded a new version of [[File:'13mustangvert front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 326 324 2022-08-23T01:44:12Z Cheemsthethird 10 Cheemsthethird reverted [[File:'13mustangvert front.jpg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:'13mustangvert rear.jpg 6 71 325 165 2022-08-23T01:43:46Z Cheemsthethird 10 Cheemsthethird uploaded a new version of [[File:'13mustangvert rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 327 325 2022-08-23T01:44:28Z Cheemsthethird 10 Cheemsthethird reverted [[File:'13mustangvert rear.jpg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Edison Model 3 0 180 330 2022-08-23T01:45:49Z S30Z 2 Created page with " {{Carinfo |name=2020 Edison Model 3 |image=Model_3_Front.jpg |make=Edison |type=Sedan |price=$46,690 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Model_3 |rlname=Tesla Model 3 |limited=0 |electric=1 }} The 2020 Edison Model 3 is a four door sedan produced by [[Edison]]. It can be purchased from the dealership for $46,690. ==Stats== The Model 3 has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be insta..." wikitext text/x-wiki {{Carinfo |name=2020 Edison Model 3 |image=Model_3_Front.jpg |make=Edison |type=Sedan |price=$46,690 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Model_3 |rlname=Tesla Model 3 |limited=0 |electric=1 }} The 2020 Edison Model 3 is a four door sedan produced by [[Edison]]. It can be purchased from the dealership for $46,690. ==Stats== The Model 3 has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=363|tqval=394|whval=4250|spdval=145|drv=AWD}} {{Maxstats|hpval=363|tqval=394|whval=3600|spdval=145}} ==Gallery== <gallery> File:Model_3_Rear.jpg|Rear view of the 2020 Edison Model 3. </gallery> 1aade59b4fc57bd7c35ff33c3be5fdde28b14169 File:Model 3 Front.jpg 6 181 331 2022-08-23T01:46:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Model 3 Rear.jpg 6 182 332 2022-08-23T01:46:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Category:Electric vehicles 14 183 333 2022-08-23T01:46:59Z S30Z 2 Created page with "All electric vehicles in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All electric vehicles in Southwest Florida. [[Category: Vehicles]] f8fc98babaf27b862eb774b4fd7777819f35dc76 File:Yukon Front.jpg 6 184 334 2022-08-23T02:03:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Yukon Rear.jpg 6 185 335 2022-08-23T02:03:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 GEC Yukon 0 186 336 2022-08-23T02:04:03Z S30Z 2 Created page with " {{Carinfo |name=2021 GEC Yukon |image=Yukon_Front.jpg |make=GEC |type=SUV |price=$89,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Fifth_generation_(2021) |rlname=Chevrolet Tahoe/GMC Yukon (5th gen.) |limited=0 |electric=0 }} The 2021 GEC Yukon is a five door SUV produced by [[GEC]]. It can be purchased from the dealership for $89,900. ==Stats== The Yukon has 5 seats and a fuel capacity of 24 gallons. {{Stockstats..." wikitext text/x-wiki {{Carinfo |name=2021 GEC Yukon |image=Yukon_Front.jpg |make=GEC |type=SUV |price=$89,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Fifth_generation_(2021) |rlname=Chevrolet Tahoe/GMC Yukon (5th gen.) |limited=0 |electric=0 }} The 2021 GEC Yukon is a five door SUV produced by [[GEC]]. It can be purchased from the dealership for $89,900. ==Stats== The Yukon has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=420|tqval=460|whval=5827|spdval=110|drv=AWD}} {{Maxstats|hpval=1111|tqval=1440|whval=5327|spdval=175}} ==Gallery== <gallery> File:Yukon_Rear.jpg|Rear view of the 2021 GEC Yukon. </gallery> 42a28fa844912c3471c11a9d81641ea8738172cf File:Ram Rebel Rear.jpg 6 187 337 2022-08-23T03:27:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ram Rebel Front.jpg 6 188 338 2022-08-23T03:27:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F150 Front.jpg 6 189 339 2022-08-23T03:27:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F150 Rear.jpg 6 190 340 2022-08-23T03:27:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Silverado 2500HD Rear.jpg 6 191 341 2022-08-23T03:27:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Silverado 2500HD Front.jpg 6 192 342 2022-08-23T03:27:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F250 Rear.jpg 6 193 343 2022-08-23T03:28:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F250 Front.jpg 6 194 344 2022-08-23T03:28:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cybertruck Front.jpg 6 195 345 2022-08-23T03:28:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cybertruck Rear.jpg 6 196 346 2022-08-23T03:28:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F450 Front.jpg 6 197 347 2022-08-23T03:28:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F450 Rear.jpg 6 198 348 2022-08-23T03:28:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Silverado 3500HD Front.jpg 6 199 349 2022-08-23T03:29:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Silverado 3500HD Rear.jpg 6 200 350 2022-08-23T03:29:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Chavy Silverado 3500HD 0 201 351 2022-08-23T03:30:08Z S30Z 2 Created page with " {{Carinfo |name=2021 Chavy Silverado 3500HD |image=Silverado_3500HD_Front.jpg |make=Chavy |type=Pickup |price=$64,985 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2021 Chavy Silverado 3500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $6..." wikitext text/x-wiki {{Carinfo |name=2021 Chavy Silverado 3500HD |image=Silverado_3500HD_Front.jpg |make=Chavy |type=Pickup |price=$64,985 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2021 Chavy Silverado 3500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $64,985. ==Stats== The Silverado 3500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=8355|spdval=120|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=7855|spdval=182}} ==Gallery== <gallery> File:Silverado_3500HD_Rear.jpg|Rear view of the 2021 Chavy Silverado 3500HD. </gallery> 2bd26142b3ec80b4b1aa85116b9b0c667795de04 2020 Fard F150 0 202 352 2022-08-23T03:30:34Z S30Z 2 Created page with " {{Carinfo |name=2020 Fard F150 |image=F150_Front.jpg |make=Fard |type=Pickup |price=$28,745 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series#Thirteenth_generation_(2015%E2%80%932020) |rlname=Ford F150 |limited=0 |electric=0 }} The 2020 Fard F150 is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $28,745. ==Stats== The F150 has 5 seats and a fuel capacity of 26 gallons. {{Stockstat..." wikitext text/x-wiki {{Carinfo |name=2020 Fard F150 |image=F150_Front.jpg |make=Fard |type=Pickup |price=$28,745 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series#Thirteenth_generation_(2015%E2%80%932020) |rlname=Ford F150 |limited=0 |electric=0 }} The 2020 Fard F150 is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $28,745. ==Stats== The F150 has 5 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=439|tqval=523|whval=5500|spdval=135|drv=AWD}} {{Maxstats|hpval=1075|tqval=2751|whval=5000|spdval=181}} ==Gallery== <gallery> File:F150_Rear.jpg|Rear view of the 2020 Fard F150. </gallery> bb462f2d1b1a101bde60219fc043435112547b1e 2022 Chavy Silverado 2500HD 0 203 353 2022-08-23T03:30:56Z S30Z 2 Created page with " {{Carinfo |name=2020 Chavy Silverado 2500HD |image=Silverado_2500HD_Front.jpg |make=Chavy |type=Pickup |price=$55,425 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2020 Chavy Silverado 2500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $5..." wikitext text/x-wiki {{Carinfo |name=2020 Chavy Silverado 2500HD |image=Silverado_2500HD_Front.jpg |make=Chavy |type=Pickup |price=$55,425 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2020 Chavy Silverado 2500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $55,425. ==Stats== The Silverado 2500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=7467|spdval=122|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=6967|spdval=177}} ==Gallery== <gallery> File:Silverado_2500HD_Rear.jpg|Rear view of the 2020 Chavy Silverado 2500HD. </gallery> 82880c940f7e1e21ed925f3c3b1c865200523a42 2020 Dodje Ram Rebel 0 204 354 2022-08-23T03:31:12Z S30Z 2 Created page with " {{Carinfo |name=2020 Dodje Ram Rebel |image=Ram_Rebel_Front.jpg |make=Dodje |type=Pickup |price=$44,740 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ram_Pickup_(fifth_generation) |rlname=Ram 1500 Rebel |limited=0 |electric=0 }} The 2020 Dodje Ram Rebel is a four door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $44,740. ==Stats== The Ram Rebel has 5 seats and a fuel capacity of 33 gallons. {{Stocks..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Ram Rebel |image=Ram_Rebel_Front.jpg |make=Dodje |type=Pickup |price=$44,740 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ram_Pickup_(fifth_generation) |rlname=Ram 1500 Rebel |limited=0 |electric=0 }} The 2020 Dodje Ram Rebel is a four door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $44,740. ==Stats== The Ram Rebel has 5 seats and a fuel capacity of 33 gallons. {{Stockstats|hpval=394|tqval=502|whval=5372|spdval=166|drv=AWD}} {{Maxstats|hpval=1083|tqval=2600|whval=4872|spdval=184}} ==Gallery== <gallery> File:Ram_Rebel_Rear.jpg|Rear view of the 2020 Dodje Ram Rebel. </gallery> dd9b15d33bf50194a619eb61e2da547df29ce421 2021 Fard F-250 Superduty 0 205 355 2022-08-23T03:31:37Z S30Z 2 Created page with " {{Carinfo |name=2021 Fard F-250 Superduty |image=F250_Front.jpg |make=Fard |type=Pickup |price=$62,720 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-250 Superduty |limited=0 |electric=0 }} The 2021 Fard F-250 Superduty is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $62,720. ==Stats== The F-250 Superduty has 11 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=2021 Fard F-250 Superduty |image=F250_Front.jpg |make=Fard |type=Pickup |price=$62,720 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-250 Superduty |limited=0 |electric=0 }} The 2021 Fard F-250 Superduty is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $62,720. ==Stats== The F-250 Superduty has 11 seats and a fuel capacity of 34 gallons. {{Stockstats|hpval=474|tqval=1051|whval=7494|spdval=111|drv=AWD}} {{Maxstats|hpval=1184|tqval=3193|whval=6994|spdval=178}} ==Gallery== <gallery> File:F250_Rear.jpg|Rear view of the 2021 Fard F-250 Superduty. </gallery> 15d9b3a5c38be4af784016d65114997979333e2f 2020 Edison Cybertruck 0 206 356 2022-08-23T03:32:09Z S30Z 2 Created page with " {{Carinfo |name=2020 Edison Cybertruck |image=Cybertruck_Front.jpg |make=Edison |type=Pickup |price=$69,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Cybertruck |rlname=Tesla Cybertruck |limited=0 |electric=1 }} The 2020 Edison Cybertruck is a four door pickup truck produced by [[Edison]]. It can be purchased from the dealership for $69,900. ==Stats== The Cybertruck has 5 seats. As an electric vehicle, engine and transmissio..." wikitext text/x-wiki {{Carinfo |name=2020 Edison Cybertruck |image=Cybertruck_Front.jpg |make=Edison |type=Pickup |price=$69,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Cybertruck |rlname=Tesla Cybertruck |limited=0 |electric=1 }} The 2020 Edison Cybertruck is a four door pickup truck produced by [[Edison]]. It can be purchased from the dealership for $69,900. ==Stats== The Cybertruck has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=800|tqval=1000|whval=5132|spdval=145|drv=AWD}} {{Maxstats|hpval=800|tqval=1000|whval=4632|spdval=145|}} ==Gallery== <gallery> File:Cybertruck_Rear.jpg|Rear view of the 2020 Edison Cybertruck. </gallery> 25c18fdf15317ae7bc431499a5400104df834b83 2021 Fard F-450 Superduty 0 207 357 2022-08-23T03:32:33Z S30Z 2 Created page with " {{Carinfo |name=2021 Fard F-450 Superduty |image=F450_Front.jpg |make=Fard |type=Pickup |price=$85,340 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 Superduty |limited=0 |electric=0 }} The 2021 Fard F-450 Superduty is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $85,340. ==Stats== The F-450 Superduty has 11 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=2021 Fard F-450 Superduty |image=F450_Front.jpg |make=Fard |type=Pickup |price=$85,340 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 Superduty |limited=0 |electric=0 }} The 2021 Fard F-450 Superduty is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $85,340. ==Stats== The F-450 Superduty has 11 seats and a fuel capacity of 34 gallons. {{Stockstats|hpval=474|tqval=1051|whval=8586|spdval=113|drv=AWD}} {{Maxstats|hpval=1184|tqval=3193|whval=8086|spdval=182}} ==Gallery== <gallery> File:F450_Rear.jpg|Rear view of the 2021 Fard F-450 Superduty. </gallery> 06a27190b7be22a616ca1f896adbf904eb536ab4 2006 Dodje Ram SRT-10 0 208 358 2022-08-23T04:53:23Z S30Z 2 Created page with " {{Carinfo |name=2006 Dodje Ram SRT-10 |image=Ram_SRT-10_Front.jpg |make=Dodje |type=Pickup |price=$69,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Ram_SRT-10 |rlname=Dodge Ram SRT-10 |limited=0 |electric=0 }} The 2006 Dodje Ram SRT-10 is a two door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $69,995. ==Stats== The Ram SRT-10 has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpv..." wikitext text/x-wiki {{Carinfo |name=2006 Dodje Ram SRT-10 |image=Ram_SRT-10_Front.jpg |make=Dodje |type=Pickup |price=$69,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Ram_SRT-10 |rlname=Dodge Ram SRT-10 |limited=0 |electric=0 }} The 2006 Dodje Ram SRT-10 is a two door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $69,995. ==Stats== The Ram SRT-10 has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=500|tqval=525|whval=5183|spdval=145|drv=AWD}} {{Maxstats|hpval=1194|tqval=1282|whval=4683|spdval=220}} ==Gallery== <gallery> File:Ram_SRT-10_Rear.jpg|Rear view of the 2006 Dodje Ram SRT-10. </gallery> 95f94c58daf681d584a0ac0e3a218c11826a1e7b 2019 Fard Ranger 0 209 359 2022-08-23T04:53:59Z S30Z 2 Created page with " {{Carinfo |name=2019 Fard Ranger |image=Ranger_Front.jpg |make=Fard |type=Pickup |price=$40,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $40,998. ==Stats== The Ranger has 8 seats and a fuel capacity of 18 gall..." wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger |image=Ranger_Front.jpg |make=Fard |type=Pickup |price=$40,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger is a four door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $40,998. ==Stats== The Ranger has 8 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} {{Maxstats|hpval=1037|tqval=1585|whval=3854|spdval=193}} ==Gallery== <gallery> File:Ranger_Rear.jpg|Rear view of the 2019 Fard Ranger. </gallery> e3a272d587b8b24547f9fe76933cb89dd91ed396 2022 Toyoto Tundra TRD-Pro 0 210 360 2022-08-23T04:55:46Z S30Z 2 Created page with " {{Carinfo |name=2022 Toyoto Tundra TRD-Pro |image=Tundra_Front.jpg |make=Toyoto |type=Pickup |price=$66,805 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Tundra#Third_generation_(XK70;_2022) |rlname=Toyota Tundra (3rd gen.) |limited=0 |electric=0 }} The 2022 Toyoto Tundra TRD-Pro is a four door pickup truck produced by [[Toyoto]]. It can be purchased from the dealership for $66,805. ==Stats== The Tundra has 5 seats and a fuel c..." wikitext text/x-wiki {{Carinfo |name=2022 Toyoto Tundra TRD-Pro |image=Tundra_Front.jpg |make=Toyoto |type=Pickup |price=$66,805 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Tundra#Third_generation_(XK70;_2022) |rlname=Toyota Tundra (3rd gen.) |limited=0 |electric=0 }} The 2022 Toyoto Tundra TRD-Pro is a four door pickup truck produced by [[Toyoto]]. It can be purchased from the dealership for $66,805. ==Stats== The Tundra has 5 seats and a fuel capacity of 32 gallons. {{Stockstats|hpval=437|tqval=583|whval=6015|spdval=126|drv=AWD}} {{Maxstats|hpval=1105|tqval=1737|whval=5515|spdval=197}} ==Gallery== <gallery> File:Tundra_Rear.jpg|Rear view of the 2022 Toyoto Tundra TRD-Pro. </gallery> b0c1f39d4a735311b2cde4c02cfd69f49cd52dcf 2021 Dodje RAM TRX 0 211 361 2022-08-23T04:56:06Z S30Z 2 Created page with " {{Carinfo |name=2021 Dodje RAM TRX |image=TRX_Front.jpg |make=Dodje |type=Pickup |price=$94,907 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ram_Rebel_TRX |rlname=Ram Rebel TRX |limited=0 |electric=0 }} The 2021 Dodje RAM TRX is a four door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $94,907. ==Stats== The RAM TRX has 5 seats and a fuel capacity of 33 gallons. {{Stockstats|hpval=702|tqval=650|whva..." wikitext text/x-wiki {{Carinfo |name=2021 Dodje RAM TRX |image=TRX_Front.jpg |make=Dodje |type=Pickup |price=$94,907 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ram_Rebel_TRX |rlname=Ram Rebel TRX |limited=0 |electric=0 }} The 2021 Dodje RAM TRX is a four door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $94,907. ==Stats== The RAM TRX has 5 seats and a fuel capacity of 33 gallons. {{Stockstats|hpval=702|tqval=650|whval=6396|spdval=120|drv=AWD}} {{Maxstats|hpval=1195|tqval=1539|whval=5896|spdval=153}} ==Gallery== <gallery> File:TRX_Rear.jpg|Rear view of the 2021 Dodje RAM TRX. </gallery> 536120befef7ec825ec68f7dcbae9d67a3c3f4bf 2020 Jeff Gladiator 0 212 362 2022-08-23T04:56:24Z S30Z 2 Created page with " {{Carinfo |name=2020 Jeff Gladiator |image=Gladiator_Front.jpg |make=Jeff |type=Pickup |price=$36,745 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Gladiator_(JT) |rlname=Jeep Gladiator (JT) |limited=0 |electric=0 }} The 2020 Jeff Gladiator is a four door pickup truck produced by [[Jeff]]. It can be purchased from the dealership for $36,745. ==Stats== The Gladiator has 11 seats and a fuel capacity of 22 gallons. {{Stockstats|hpv..." wikitext text/x-wiki {{Carinfo |name=2020 Jeff Gladiator |image=Gladiator_Front.jpg |make=Jeff |type=Pickup |price=$36,745 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Gladiator_(JT) |rlname=Jeep Gladiator (JT) |limited=0 |electric=0 }} The 2020 Jeff Gladiator is a four door pickup truck produced by [[Jeff]]. It can be purchased from the dealership for $36,745. ==Stats== The Gladiator has 11 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=284|tqval=265|whval=4672|spdval=112|drv=AWD}} {{Maxstats|hpval=940|tqval=1118|whval=4172|spdval=194}} ==Gallery== <gallery> File:Gladiator_Rear.jpg|Rear view of the 2020 Jeff Gladiator. </gallery> f1a46ac06a3a5c2ea33bae126d3e07ebb2ea3a0f 2021 Hammer EV 0 213 363 2022-08-23T04:56:43Z S30Z 2 Created page with " {{Carinfo |name=2021 Hammer EV |image=Hammer_EV_Front.jpg |make=Hammer |type=Pickup |price=$112,595 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/GMC_Hummer_EV |rlname=GMC Hummer EV |limited=0 |electric=1 }} The 2021 Hammer EV is a four door pickup truck produced by [[Hammer]]. It can be purchased from the dealership for $112,595. ==Stats== The Hammer EV has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be i..." wikitext text/x-wiki {{Carinfo |name=2021 Hammer EV |image=Hammer_EV_Front.jpg |make=Hammer |type=Pickup |price=$112,595 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/GMC_Hummer_EV |rlname=GMC Hummer EV |limited=0 |electric=1 }} The 2021 Hammer EV is a four door pickup truck produced by [[Hammer]]. It can be purchased from the dealership for $112,595. ==Stats== The Hammer EV has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=799|tqval=1000|whval=5132|spdval=135|drv=AWD}} {{Maxstats|hpval=799|tqval=1000|whval=4632|spdval=135|}} ==Gallery== <gallery> File:Hammer_EV_Rear.jpg|Rear view of the 2021 Hammer EV. </gallery> 4c6cde60d3b72bf538a6bb0a604c619a7bb3cb80 2020 GEC Sierra 1500 0 214 364 2022-08-23T04:56:59Z S30Z 2 Created page with " {{Carinfo |name=2020 GEC Sierra 1500 |image=Sierra_Front.jpg |make=GEC |type=Pickup |price=$53,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2020 GEC Sierra 1500 is a four door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $53,800. ==Stats== The Sierra..." wikitext text/x-wiki {{Carinfo |name=2020 GEC Sierra 1500 |image=Sierra_Front.jpg |make=GEC |type=Pickup |price=$53,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2020 GEC Sierra 1500 is a four door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $53,800. ==Stats== The Sierra 1500 has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=419|tqval=446|whval=5530|spdval=132|drv=AWD}} {{Maxstats|hpval=1111|tqval=1447|whval=5030|spdval=207}} ==Gallery== <gallery> File:Sierra_Rear.jpg|Rear view of the 2020 GEC Sierra 1500. </gallery> 464eeac00d3e99b52f6cb63475a1d7dd3023d451 2018 Toyoto Tacoma 0 215 365 2022-08-23T04:57:24Z S30Z 2 Created page with " {{Carinfo |name=2018 Toyoto Tacoma |image=Tacoma_Front.jpg |make=Toyoto |type=Pickup |price=$44,075 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Tacoma#Third_generation_(N300;_2015) |rlname=Toyota Tacoma (3rd gen.) |limited=0 |electric=0 }} The 2018 Toyoto Tacoma is a four door pickup truck produced by [[Toyoto]]. It can be purchased from the dealership for $44,075. ==Stats== The Tacoma has 5 seats and a fuel capacity of 21 ga..." wikitext text/x-wiki {{Carinfo |name=2018 Toyoto Tacoma |image=Tacoma_Front.jpg |make=Toyoto |type=Pickup |price=$44,075 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Tacoma#Third_generation_(N300;_2015) |rlname=Toyota Tacoma (3rd gen.) |limited=0 |electric=0 }} The 2018 Toyoto Tacoma is a four door pickup truck produced by [[Toyoto]]. It can be purchased from the dealership for $44,075. ==Stats== The Tacoma has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=277|tqval=273|whval=4480|spdval=115|drv=AWD}} {{Maxstats|hpval=930|tqval=1358|whval=3980|spdval=202}} ==Gallery== <gallery> File:Tacoma_Rear.jpg|Rear view of the 2018 Toyoto Tacoma. </gallery> 043944ad1779fbd5ae244e2529b2ecb57fae5d3b File:Tundra Rear.jpg 6 216 366 2022-08-23T04:58:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Tundra Front.jpg 6 217 367 2022-08-23T04:58:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ram SRT-10 Rear.jpg 6 218 368 2022-08-23T04:58:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ram SRT-10 Front.jpg 6 219 369 2022-08-23T04:58:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ranger Rear.jpg 6 220 370 2022-08-23T04:59:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ranger Front.jpg 6 221 371 2022-08-23T04:59:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRX Rear.jpg 6 222 372 2022-08-23T04:59:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRX Front.jpg 6 223 373 2022-08-23T04:59:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Gladiator Rear.jpg 6 224 374 2022-08-23T04:59:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Gladiator Front.jpg 6 225 375 2022-08-23T04:59:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Hammer EV Rear.jpg 6 226 376 2022-08-23T04:59:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Hammer EV Front.jpg 6 227 377 2022-08-23T05:00:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sierra Rear.jpg 6 228 378 2022-08-23T05:00:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sierra Front.jpg 6 229 379 2022-08-23T05:00:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Tacoma Rear.jpg 6 230 380 2022-08-23T05:00:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Tacoma Front.jpg 6 231 381 2022-08-23T05:00:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CVPI Front.jpg 6 232 382 2022-08-23T05:38:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CVPI Rear.jpg 6 233 383 2022-08-23T05:39:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtility Rear.jpg 6 234 384 2022-08-23T05:39:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtility Front.jpg 6 235 385 2022-08-23T05:39:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2011 Fard Crown Victoria Police Interceptor 0 236 386 2022-08-23T05:40:05Z S30Z 2 Created page with "{{Carinfo |name=2011 Fard Crown Victoria Police Interceptor |image=CVPI_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor is a police vehicle produced by [[Fard]]. It is a complimentary..." wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor |image=CVPI_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=120|drv=RWD}} ==Gallery== <gallery> File:CVPI_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor. </gallery> b3d2569dd0e6e0f919eca15bb1a67905086c5b83 2021 Fard Police Interceptor Utility 0 237 387 2022-08-23T05:40:51Z S30Z 2 Created page with "{{Carinfo |name=2021 Fard Police Interceptor Utility |image=PIUtility_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a comp..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility |image=PIUtility_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility. </gallery> f01de9666a3a29d7e82c06d201c9c01ccdcebc3c Category:Emergency 14 238 388 2022-08-23T06:26:07Z S30Z 2 Created page with "All emergency vehicles in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All emergency vehicles in Southwest Florida. [[Category: Vehicles]] 8ed48b6fcc0e143f5db5ad84091b661d6c58198d File:CVPI Undercover Rear.jpg 6 239 389 2022-08-23T06:46:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CVPI Undercover Front.jpg 6 240 390 2022-08-23T06:46:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerPB Undercover Rear.jpg 6 241 391 2022-08-23T06:46:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerPB Undercover Front.jpg 6 242 392 2022-08-23T06:46:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtility Undercover Rear.jpg 6 243 393 2022-08-23T06:46:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtility Undercover Front.jpg 6 244 394 2022-08-23T06:46:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerP Undercover Rear.jpg 6 245 395 2022-08-23T06:47:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerP Undercover Front.jpg 6 246 396 2022-08-23T06:47:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PPV Undercover Rear.jpg 6 247 397 2022-08-23T06:47:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PPV Undercover Front.jpg 6 248 398 2022-08-23T06:47:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Responder Rear.jpg 6 249 399 2022-08-23T06:47:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Responder Front.jpg 6 250 400 2022-08-23T06:47:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Chavy Tahoe PPV Undercover 0 251 401 2022-08-23T06:48:40Z S30Z 2 Created page with "{{Carinfo |name=2020 Chavy Tahoe PPV Undercover |image=PPV_Undercover_Front.jpg |make=Chavy |type=Emergency |price=$35,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV Undercover is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $35,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capac..." wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe PPV Undercover |image=PPV_Undercover_Front.jpg |make=Chavy |type=Emergency |price=$35,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV Undercover is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $35,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=355|tqval=383|whval=5480|spdval=135|drv=RWD}} ==Gallery== <gallery> File:PPV_Undercover_Rear.jpg|Rear view of the 2020 Chavy Tahoe PPV Undercover. </gallery> 00549250baec22d27ca039d1dda8a675befb9ab5 2021 Fard Police Interceptor Utility Undercover 0 252 402 2022-08-23T06:49:07Z S30Z 2 Created page with "{{Carinfo |name=2021 Fard Police Interceptor Utility Undercover |image=PIUtility_Undercover_Front.jpg |make=Fard |type=Emergency |price=$25,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Undercover |image=PIUtility_Undercover_Front.jpg |make=Fard |type=Emergency |price=$25,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $25,000. ==Stats== The Police Interceptor Utility Undercover has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Undercover_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Undercover. </gallery> 394dbcbaaa4634f442aac00c34f12f9bcd853380 2020 Dodje Charger Pursuit Undercover 0 253 403 2022-08-23T06:49:31Z S30Z 2 Created page with "{{Carinfo |name=2020 Dodje Charger Pursuit Undercover |image=ChargerP_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$41,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $41,550. ==Stats== Th..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit Undercover |image=ChargerP_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$41,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $41,550. ==Stats== The Dodje Charger Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=370|tqval=432|whval=4271|spdval=147|drv=RWD}} ==Gallery== <gallery> File:ChargerP_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit Undercover. </gallery> f266167d12ca34e3010b8e2dce3732db64a6c82f 2019 Fard Police Responder Undercover 0 254 404 2022-08-23T06:49:55Z S30Z 2 Created page with "{{Carinfo |name=2019 Fard Police Responder Undercover |image=Responder_Front.jpg |make=Fard |type=Emergency |price=$32,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fusion_(Americas)#Second_generation_(2013) |rlname=Ford Police Responder |limited=0 |electric=0 }} The 2019 Fard Police Responder Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fard Police Re..." wikitext text/x-wiki {{Carinfo |name=2019 Fard Police Responder Undercover |image=Responder_Front.jpg |make=Fard |type=Emergency |price=$32,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fusion_(Americas)#Second_generation_(2013) |rlname=Ford Police Responder |limited=0 |electric=0 }} The 2019 Fard Police Responder Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fard Police Responder Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=240|tqval=286|whval=3525|spdval=105|drv=FWD}} ==Gallery== <gallery> File:Responder_Rear.jpg|Rear view of the 2019 Fard Police Responder Undercover. </gallery> 4f61079e3e60da8d06cdc1470041cbb812c4a650 2011 Fard Crown Victoria Police Interceptor Undercover 0 255 405 2022-08-23T06:50:58Z S30Z 2 Created page with "{{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Undercover |image=CVPI_Undercover_Front.jpg |make=Fard |type=Emergency |price=$11,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Undercover is a police vehicle produced..." wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Undercover |image=CVPI_Undercover_Front.jpg |make=Fard |type=Emergency |price=$11,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $11,850. ==Stats== The Crown Victoria Police Interceptor Undercover has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=120|drv=RWD}} ==Gallery== <gallery> File:CVPI_Undercover_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Undercover. </gallery> 3ff2cdc60efc8492d2cac3b0e7aa315661205c96 2020 Dodje Charger Badcat Pursuit Undercover 0 256 406 2022-08-23T06:52:12Z S30Z 2 Created page with "{{Carinfo |name=2020 Dodje Charger Pursuit Badcat Undercover |image=ChargerPB_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$69,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit Badcat Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $69,500. ==St..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit Badcat Undercover |image=ChargerPB_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$69,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit Badcat Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $69,500. ==Stats== The Dodje Charger Pursuit Badcat Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit Badcat Undercover. </gallery> 9bb955543f692b738f1d646ad78bc7f50098f90f 422 406 2022-08-23T22:26:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit Undercover |image=ChargerPB_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$69,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $69,500. ==Stats== The Dodje Charger Badcat Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit Undercover. </gallery> 1a0a64d65f2112d1ad598b7dba332d71a729272f 423 422 2022-08-23T22:26:34Z S30Z 2 S30Z moved page [[2020 Dodje Charger Pursuit Badcat Undercover]] to [[2020 Dodje Charger Badcat Pursuit Undercover]] wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit Undercover |image=ChargerPB_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$69,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $69,500. ==Stats== The Dodje Charger Badcat Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit Undercover. </gallery> 1a0a64d65f2112d1ad598b7dba332d71a729272f Template:Maxstats 10 27 407 320 2022-08-23T06:54:51Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} Note: Top speed testing is performed with stock suspension, wheel width, drivetrain, differential, and gearing settings. You will likely be able to achieve a better top speed through further tuning (if available). <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> fa17142d820d67aa5971d572442c8c8c6b7a2d83 File:Strigid Wordmark.svg 6 257 408 2022-08-23T07:08:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 410 408 2022-08-23T07:37:07Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Wordmark.svg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 411 410 2022-08-23T07:38:06Z S30Z 2 S30Z reverted [[File:Strigid Wordmark.svg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Strigid Logo.png 6 259 412 2022-08-23T07:42:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Welcome.jpg 6 54 413 137 2022-08-23T08:14:35Z S30Z 2 S30Z uploaded a new version of [[File:Welcome.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 416 413 2022-08-23T08:16:47Z S30Z 2 S30Z reverted [[File:Welcome.jpg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 417 416 2022-08-23T08:17:03Z S30Z 2 S30Z reverted [[File:Welcome.jpg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 418 417 2022-08-23T08:17:25Z S30Z 2 S30Z reverted [[File:Welcome.jpg]] to an old version wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Main Page 0 1 414 139 2022-08-23T08:15:07Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> https://static.miraheze.org/strigidwiki/d/de/Welcome.jpg </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. ===For editors=== [[Guides]] 65cddc16b7ab4ea24d9ada966f4fdd7995afb6e9 415 414 2022-08-23T08:16:22Z S30Z 2 Undo revision 414 by [[Special:Contributions/S30Z|S30Z]] ([[User talk:S30Z|talk]]) wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. ===For editors=== [[Guides]] 27034721f5ca7b29d2288704b61fa31576f07d56 File:Vehicles.jpg 6 260 419 2022-08-23T08:18:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Category:Vehicles 14 4 420 5 2022-08-23T08:20:35Z S30Z 2 wikitext text/x-wiki <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Vehicles.jpg|frameless|800x800px]] </div> 8e65b9b009693113c3ad4f950ea2134353c2bba0 2006 Dodje Ram SRT-10 0 208 421 358 2022-08-23T08:25:09Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2006 Dodje Ram SRT-10 |image=Ram_SRT-10_Front.jpg |make=Dodje |type=Pickup |price=$69,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Ram_SRT-10 |rlname=Dodge Ram SRT-10 |limited=0 |electric=0 }} The 2006 Dodje Ram SRT-10 is a two door pickup truck produced by [[Dodje]]. It can be purchased from the dealership for $69,995. ==Stats== The Ram SRT-10 has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=500|tqval=525|whval=5183|spdval=145|drv=RWD}} {{Maxstats|hpval=1194|tqval=1282|whval=4683|spdval=220}} ==Gallery== <gallery> File:Ram_SRT-10_Rear.jpg|Rear view of the 2006 Dodje Ram SRT-10. </gallery> a010aed5cdb8b35fb792a58d49300ef4c4d7f720 2020 Dodje Charger Pursuit Badcat Undercover 0 261 424 2022-08-23T22:26:34Z S30Z 2 S30Z moved page [[2020 Dodje Charger Pursuit Badcat Undercover]] to [[2020 Dodje Charger Badcat Pursuit Undercover]] wikitext text/x-wiki #REDIRECT [[2020 Dodje Charger Badcat Pursuit Undercover]] 137e0aab17b1b6404fd1c230847b0a6693ca8a41 File:PPV Front.jpg 6 262 425 2022-08-23T22:42:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PPV Rear.jpg 6 263 426 2022-08-23T22:44:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Chavy Tahoe PPV 0 264 427 2022-08-23T22:44:16Z S30Z 2 Created page with "{{Carinfo |name=2020 Chavy Tahoe PPV |image=PPV_Front.jpg |make=Chavy |type=Emergency |price=$33,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $33,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an emergenc..." wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe PPV |image=PPV_Front.jpg |make=Chavy |type=Emergency |price=$33,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $33,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=355|tqval=383|whval=5480|spdval=135|drv=RWD}} ==Gallery== <gallery> File:PPV_Rear.jpg|Rear view of the 2020 Chavy Tahoe PPV. </gallery> d3f5456da7afbda37f076e55c59a5449475f44a1 File:F150 Police Front.jpg 6 265 428 2022-08-23T22:45:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F150 Police Rear.jpg 6 266 429 2022-08-23T22:45:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerP Front.jpg 6 267 430 2022-08-23T22:45:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerP Rear.jpg 6 268 431 2022-08-23T22:45:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerPB Front.jpg 6 269 432 2022-08-23T22:45:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerPB Rear.jpg 6 270 433 2022-08-23T22:45:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Fard F150 Police Responder 0 271 434 2022-08-23T22:46:15Z S30Z 2 Created page with "{{Carinfo |name=2020 Fard F150 Police Responder |image=F150_Police_Front.jpg |make=Fard |type=Emergency |price=$44,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series#Thirteenth_generation_(2015%E2%80%932020) |rlname=Ford F150 |limited=0 |electric=0 }} The 2020 Fard F150 Police Responder is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $44,450. ==Stats== The F150 Police Responder has 5..." wikitext text/x-wiki {{Carinfo |name=2020 Fard F150 Police Responder |image=F150_Police_Front.jpg |make=Fard |type=Emergency |price=$44,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series#Thirteenth_generation_(2015%E2%80%932020) |rlname=Ford F150 |limited=0 |electric=0 }} The 2020 Fard F150 Police Responder is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $44,450. ==Stats== The F150 Police Responder has 5 seats and a fuel capacity of 26 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=439|tqval=519|whval=5500|spdval=135|drv=AWD}} ==Gallery== <gallery> File:F150_Police_Rear.jpg|Rear view of the 2020 Fard F150 Police Responder. </gallery> 64934355e934b0ab9d1b3be4e79a666bdc6a3668 2020 Dodje Charger Pursuit 0 272 435 2022-08-23T22:46:35Z S30Z 2 Created page with "{{Carinfo |name=2020 Dodje Charger Pursuit |image=ChargerP_Front.jpg |make=Dodje |type=Emergency |price=$39,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $39,500. ==Stats== The Dodje Charger Pursuit has 5 sea..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit |image=ChargerP_Front.jpg |make=Dodje |type=Emergency |price=$39,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $39,500. ==Stats== The Dodje Charger Pursuit has 5 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=370|tqval=432|whval=4271|spdval=147|drv=RWD}} ==Gallery== <gallery> File:ChargerP_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit. </gallery> f3fdf5976d63f6367c0841b6be4080e134382935 2020 Dodje Charger Badcat Pursuit 0 273 436 2022-08-23T22:46:59Z S30Z 2 Created page with "{{Carinfo |name=2020 Dodje Charger Badcat Pursuit |image=ChargerPB_Front.jpg |make=Dodje |type=Emergency |price=$67,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $67,500. ==Stats== The Dodje Charger Badcat Pu..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit |image=ChargerPB_Front.jpg |make=Dodje |type=Emergency |price=$67,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $67,500. ==Stats== The Dodje Charger Badcat Pursuit has 5 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit. </gallery> 4175d329a5058afa62d2a8a4ca334f5b3dbd50e9 Category:Dodje 14 274 437 2022-08-23T22:47:32Z S30Z 2 Created page with "All Dodje vehicles in Southwest Florida." wikitext text/x-wiki All Dodje vehicles in Southwest Florida. b803a2ed7d3fd1080b4a4532d8fbf9490b8f5569 File:F450FRU Front.jpg 6 275 438 2022-08-23T23:24:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F450FRU Rear.jpg 6 276 439 2022-08-23T23:24:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Fard F-450 Fast Response Unit 0 277 440 2022-08-23T23:25:19Z S30Z 2 Created page with " {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Pickup |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does n..." wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Pickup |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> 7ceb833239984c53c3aa3135b02e0f82e28913b6 441 440 2022-08-23T23:25:35Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> 4de1c63c9ffda38d435b2b64b40f9ed91b3655fb 442 441 2022-08-23T23:43:38Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> 1343dfe885b2f69083d61c836e85fb44960666f8 File:Monarch CoverOpen.jpg 6 278 443 2022-08-23T23:43:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Monarch Rear.jpg 6 279 444 2022-08-23T23:44:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Monarch Front.jpg 6 280 445 2022-08-23T23:45:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Durastar Front.jpg 6 281 446 2022-08-23T23:46:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Durastar Rear.jpg 6 282 447 2022-08-23T23:46:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Intercontinental Durastar Heavy Duty Pumper 0 283 448 2022-08-23T23:47:05Z S30Z 2 Created page with " {{Carinfo |name=Intercontinental Durastar Heavy Duty Pumper |image=Durastar_Front.jpg |make=Intercontinental |type=Emergency |price=$146,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/International_DuraStar |rlname=International DuraStar |limited=0 |electric=0 }} The Intercontinental Durastar Heavy Duty Pumper is a fire truck produced by [[Intercontinental]]. It can be purchased at the dealership for $146,000. ==Stats== The Durasta..." wikitext text/x-wiki {{Carinfo |name=Intercontinental Durastar Heavy Duty Pumper |image=Durastar_Front.jpg |make=Intercontinental |type=Emergency |price=$146,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/International_DuraStar |rlname=International DuraStar |limited=0 |electric=0 }} The Intercontinental Durastar Heavy Duty Pumper is a fire truck produced by [[Intercontinental]]. It can be purchased at the dealership for $146,000. ==Stats== The Durastar Heavy Duty Pumper has 6 seats and has a fuel capacity of 100 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=350|tqval=1000|whval=42600|spdval=95|drv=RWD}} ==Gallery== <gallery> File:Durastar_Rear.jpg|Rear view of the Intercontinental Durastar Heavy Duty Pumper. </gallery> e42a9b88c15f721a2cd846ee3d0ab5f4d1c8711b File:Monarch CoverClosed.jpg 6 284 449 2022-08-23T23:47:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Stuphen Monarch Heavy Rescue Truck 0 285 450 2022-08-23T23:47:41Z S30Z 2 Created page with " {{Carinfo |name=Stuphen Monarch Heavy Rescue Truck |image=Monarch_Front.jpg |make=Stuphen |type=Emergency |price=$109,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Sutphen |rlname=Sutphen Monarch |limited=0 |electric=0 }} The Stuphen Monarch Heavy Rescue Truck is a fire truck produced by [[Stuphen]]. It can be purchased at the dealership for $109,000. ==Stats== The Monarch Heavy Rescue Truck has 6 seats and has a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=Stuphen Monarch Heavy Rescue Truck |image=Monarch_Front.jpg |make=Stuphen |type=Emergency |price=$109,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Sutphen |rlname=Sutphen Monarch |limited=0 |electric=0 }} The Stuphen Monarch Heavy Rescue Truck is a fire truck produced by [[Stuphen]]. It can be purchased at the dealership for $109,000. ==Stats== The Monarch Heavy Rescue Truck has 6 seats and has a fuel capacity of 100 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=350|tqval=1000|whval=41250|spdval=95|drv=RWD}} ==Gallery== <gallery> File:Monarch_Rear.jpg|Rear view of the Stuphen Monarch Heavy Rescue Truck. File:Monarch_CoverClosed.jpg|Unlike other fire trucks, the water hose is hidden under a cover on the driver's side. File:Monarch_CoverOpen.jpg|Cover opened. </gallery> dbe529c03286d462ee6a97a510f284ee66f450ae File:F450Amb Front.jpg 6 286 451 2022-08-24T00:02:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F450Amb Rear.jpg 6 287 452 2022-08-24T00:03:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard F-450 Ambulance 0 288 453 2022-08-24T00:03:37Z S30Z 2 Created page with " {{Carinfo |name=2020 Fard F-450 Ambulance |image=F450Amb_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Ambulance is an ambulance produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any..." wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Ambulance |image=F450Amb_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Ambulance is an ambulance produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=11500|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450Amb_Rear.jpg|Rear view of the 2020 Fard F-450 Ambulance. </gallery> 254eb11ee72daa8fc5f775352e3daaf5725c1080 Category:Jobs 14 289 454 2022-08-24T00:28:52Z Hank00 8 Created page with "Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid." wikitext text/x-wiki Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid. d8042a5d1b22241fc56bb85891e108f3b055760f Apartment Concierge 0 290 455 2022-08-24T00:52:52Z Hank00 8 Added Basic content wikitext text/x-wiki The Apartment Concierge job requires staying inside the Gulf Paradise Condos, located across from Seaside. Players do not need to own any gamepass to work at this job. All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' *Provide citizens with information about available apartments/condos *Maintain vacant properties *Enforce housing rules on tenants {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |Assistant |250 |- |Concierge |N/A |- |Head Concierge |N/A |- |Supervisor |N/A |- |Manager |N/A |} b194c46b760c520f80bb1c549aaa0a1fea734c64 Cafe Worker 0 291 456 2022-08-24T00:53:24Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Criminal 0 292 457 2022-08-24T00:53:40Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Dealership Employee 0 293 458 2022-08-24T00:53:59Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Fintech Employee 0 294 459 2022-08-24T00:54:23Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a McBloxxer's Employee 0 295 460 2022-08-24T00:54:47Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Mirage Employee 0 296 461 2022-08-24T00:55:07Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Police 0 297 462 2022-08-24T00:55:25Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a RW Bank Employee 0 298 463 2022-08-24T00:55:43Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Rift Driver 0 299 464 2022-08-24T00:55:59Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a StudRac Employee 0 300 465 2022-08-24T00:56:26Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a File:C30 Rear.jpg 6 301 466 2022-08-24T00:57:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C30 Front.jpg 6 302 467 2022-08-24T00:58:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Unemployed 0 303 468 2022-08-24T00:59:15Z Hank00 8 Created page with "Unemployed is the default job all players are set to when first joining the game. Players are not paid when working this job. The job name is self explanatory; you are unemployed. Players assigned to this job will respawn at the default spawn location near the beach." wikitext text/x-wiki Unemployed is the default job all players are set to when first joining the game. Players are not paid when working this job. The job name is self explanatory; you are unemployed. Players assigned to this job will respawn at the default spawn location near the beach. 3f2336217ed83542a507644b82997be8484077ef File:Civic Hatch Rear.jpg 6 304 469 2022-08-24T00:59:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 McFaren Speedtail 0 305 470 2022-08-24T00:59:37Z Doggies50 3 Created page with "{{Carinfo|name=2020 Mcfaren Speedtail|image=Mcfaren speedtail front.png|make=Mcfaren|type=Hyper|price=2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 Mcfaren Speedtail is a Limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. == Stats == The Mcfaren Speedtail has 3 seats and a maximum fuel capacity of 21 Gallons {{Stockstats|hpval=1036|tqval=848..." wikitext text/x-wiki {{Carinfo|name=2020 Mcfaren Speedtail|image=Mcfaren speedtail front.png|make=Mcfaren|type=Hyper|price=2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 Mcfaren Speedtail is a Limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. == Stats == The Mcfaren Speedtail has 3 seats and a maximum fuel capacity of 21 Gallons {{Stockstats|hpval=1036|tqval=848|whval=3153|spdval=250|drv=RWD}}{{Maxstats|hpval=1722|tqval=1516|whval=2653|spdval=255}}<gallery> File:Mcfaren speedtail rear.png </gallery> 474973e8331d5018ec7dfe67800fede8b1d42732 File:Civic Hatch Front.jpg 6 306 471 2022-08-24T00:59:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 CVC Pharmacy Employee 0 307 472 2022-08-24T00:59:48Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Seaside Bar and Grill 0 308 473 2022-08-24T01:00:10Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a 2008 Vovol C30 T5 0 309 474 2022-08-24T01:00:24Z S30Z 2 Created page with "{{Carinfo |name=2008 Vovol C30 T5 |image=C30_Front.jpg |make=Vovol |type=Hatchback |price=$10,320 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_C30 |rlname=Volvo C30 |limited=0 |electric=0 }} The 2008 Vovol C30 T5 is a three door hatchback produced by [[Vovol]]. It can be purchased from the dealership for $10,320. ==Stats== The C30 has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=227|tqval=236|whval=2970|spdval..." wikitext text/x-wiki {{Carinfo |name=2008 Vovol C30 T5 |image=C30_Front.jpg |make=Vovol |type=Hatchback |price=$10,320 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_C30 |rlname=Volvo C30 |limited=0 |electric=0 }} The 2008 Vovol C30 T5 is a three door hatchback produced by [[Vovol]]. It can be purchased from the dealership for $10,320. ==Stats== The C30 has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=227|tqval=236|whval=2970|spdval=145|drv=FWD}} {{Maxstats|hpval=1079|tqval=1086|whval=2470|spdval=209}} ==Gallery== <gallery> File:C30_Rear.jpg|Rear view of the 2008 Vovol C30 T5. </gallery> 9f7a1195e411d69222224840a290f9e6ebc55f88 Bubmart Employee 0 310 475 2022-08-24T01:00:32Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a 2022 Handa Civic Hatchback 0 311 476 2022-08-24T01:00:42Z S30Z 2 Created page with "{{Carinfo |name=2022 Handa Civic Hatchback |image=Civic_Hatch_Front.jpg |make=Handa |type=Hatchback |price=$24,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Eleventh_generation_(2021) |rlname=Honda Civic (11th gen.) |limited=0 |electric=0 }} The 2022 Handa Civic Hatchback is a five door hatchback produced by [[Handa]]. It can be purchased from the dealership for $24,550. ==Stats== The Civic Hatchback has 5 seats and a..." wikitext text/x-wiki {{Carinfo |name=2022 Handa Civic Hatchback |image=Civic_Hatch_Front.jpg |make=Handa |type=Hatchback |price=$24,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Eleventh_generation_(2021) |rlname=Honda Civic (11th gen.) |limited=0 |electric=0 }} The 2022 Handa Civic Hatchback is a five door hatchback produced by [[Handa]]. It can be purchased from the dealership for $24,550. ==Stats== The Civic Hatchback has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=158|tqval=138|whval=2956|spdval=125|drv=FWD}} {{Maxstats|hpval=951|tqval=859|whval=2456|spdval=197}} ==Gallery== <gallery> File:Civic_Hatch_Rear.jpg|Rear view of the 2022 Handa Civic Hatchback. </gallery> 710872c9a1a0561b842ba464426cfffa6b9068b9 Hospital Worker 0 312 477 2022-08-24T01:00:50Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Firefighter 0 313 478 2022-08-24T01:01:21Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a 2020 McFaren Speedtail 0 305 479 470 2022-08-24T01:01:50Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 McFaren Speedtail|image=Mcfaren speedtail front.png|make=McFaren|type=Hyper|price=2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 Mcfaren Speedtail is a Limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. == Stats == The McFaren Speedtail has 3 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1036|tqval=848|whval=3153|spdval=250|drv=RWD}}{{Maxstats|hpval=1722|tqval=1516|whval=2653|spdval=255}} == Gallery == <gallery> File:Mcfaren speedtail rear.png </gallery> fbf8a18de4a37411e0f0a64d7807ae007a4edf38 480 479 2022-08-24T01:02:00Z S30Z 2 S30Z moved page [[2020 Mcfaren Speedtail]] to [[2020 McFaren Speedtail]] wikitext text/x-wiki {{Carinfo|name=2020 McFaren Speedtail|image=Mcfaren speedtail front.png|make=McFaren|type=Hyper|price=2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 Mcfaren Speedtail is a Limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. == Stats == The McFaren Speedtail has 3 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1036|tqval=848|whval=3153|spdval=250|drv=RWD}}{{Maxstats|hpval=1722|tqval=1516|whval=2653|spdval=255}} == Gallery == <gallery> File:Mcfaren speedtail rear.png </gallery> fbf8a18de4a37411e0f0a64d7807ae007a4edf38 2020 Mcfaren Speedtail 0 314 481 2022-08-24T01:02:01Z S30Z 2 S30Z moved page [[2020 Mcfaren Speedtail]] to [[2020 McFaren Speedtail]] wikitext text/x-wiki #REDIRECT [[2020 McFaren Speedtail]] de9cbb031c8f5e019a68599de99fc22ccd60f092 Sheriff 0 315 482 2022-08-24T01:02:40Z Hank00 8 Created page with "This job is requires the Law Enforcement Gamepass. More info coming soon." wikitext text/x-wiki This job is requires the Law Enforcement Gamepass. More info coming soon. 9af9201b022b4f1bf7d3dce4dea7021b3f62630d Paramedic 0 316 483 2022-08-24T01:02:59Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Dippin' Donuts Employee 0 317 484 2022-08-24T01:03:30Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Automart Employee 0 318 485 2022-08-24T01:03:49Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Vorzen Employee 0 319 486 2022-08-24T01:04:06Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Waterpark Employee 0 320 487 2022-08-24T01:04:26Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Sunset Performance 0 321 488 2022-08-24T01:04:43Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Community Service Aide 0 322 489 2022-08-24T01:05:13Z Hank00 8 Created page with "This job requires the Law Enforcement Gamepass. More info coming soon." wikitext text/x-wiki This job requires the Law Enforcement Gamepass. More info coming soon. 89292ef425f6520d3b01d1e7d0d4d0bf055b0ebd Sussy's Mechanic Shop 0 323 490 2022-08-24T01:05:38Z Hank00 8 Created page with "Coming Soon" wikitext text/x-wiki Coming Soon 04d2fd852a2b48a9a5f2e2930d41488d1dcaea9a Category:Jobs 14 289 491 454 2022-08-24T01:10:32Z Hank00 8 wikitext text/x-wiki Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid. [[Category:Apartment Concierge]] 071b2eb27eb736ffdf3c04e13ab4e08fcd66eee1 492 491 2022-08-24T01:11:02Z Hank00 8 wikitext text/x-wiki Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid. d8042a5d1b22241fc56bb85891e108f3b055760f 493 492 2022-08-24T01:14:16Z Hank00 8 wikitext text/x-wiki Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid. [[Page: Apartment Concierge]] 8df24f6bdeae22f172d74459cdafac85e7a9cbef 497 493 2022-08-24T01:19:27Z Hank00 8 wikitext text/x-wiki Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid. '''<big>Jobs:</big>''' [[Apartment Concierge]] [[Cafe Worker]] [[Criminal]] [[Dealership Employee]] [[Fintech Employee]] [[McBloxxer's Employee]] [[Mirage Employee]] [[Police]] [[RW Bank Employee]] [[Rift Driver]] [[StudRac Employee]] [[Unemployed]] [[CVC Pharmacy Employee]] [[Seaside Bar and Grill]] [[Bublix Employee]] [[Hospital Worker]] [[Firefighter]] [[Sheriff]] [[Paramedic]] [[Dippin' Donuts Employee]] [[Automart Employee]] [[Vorzen Employee]] [[Waterpark Employee]] [[Sunset Performance]] [[Community Service Aide]] [[Sussy's Mechanic Shop]] 91c68fa5767dceae963354a8a48c495a0daa8cc9 File:GTI Rear.jpg 6 324 494 2022-08-24T01:16:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GTI Front.jpg 6 325 495 2022-08-24T01:17:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Volkinsen Golf GTI 0 326 496 2022-08-24T01:17:18Z S30Z 2 Created page with "{{Carinfo |name=2021 Volkinsen Golf GTI |image=GTI_Front.jpg |make=Volkinsen |type=Hatchback |price=$32,665 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Golf_Mk7#Golf_GTI |rlname=Volkswagen Golf GTI (7th gen.) |limited=0 |electric=0 }} The 2021 Volkinsen Golf GTI is a five door hatchback produced by [[Volkinsen]]. It can be purchased from the dealership for $32,665. ==Stats== The Golf GTI has 5 seats and a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=2021 Volkinsen Golf GTI |image=GTI_Front.jpg |make=Volkinsen |type=Hatchback |price=$32,665 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Golf_Mk7#Golf_GTI |rlname=Volkswagen Golf GTI (7th gen.) |limited=0 |electric=0 }} The 2021 Volkinsen Golf GTI is a five door hatchback produced by [[Volkinsen]]. It can be purchased from the dealership for $32,665. ==Stats== The Golf GTI has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=228|tqval=258|whval=3221|spdval=153|drv=FWD}} {{Maxstats|hpval=1139|tqval=1128|whval=2721|spdval=194}} ==Gallery== <gallery> File:GTI_Rear.jpg|Rear view of the 2021 Volkinsen Golf GTI. </gallery> 99135345fc260ef51d11c40fa003dc069404367a 2023 Toyoto GR Corolla Morizo Edition 0 170 500 308 2022-08-24T02:43:00Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Morizo Edition |image=Corolla_Morizo_Front.jpg |make=Toyoto |type=Hatchback |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Morizo Edition |limited=1 |electric=0 }} The 2023 Toyoto GR Corolla Morizo Edition is a five door hatchback produced by [[Toyoto]]. It is a limited vehicle that was added on June 11, 2022. It was available for 48 hours and can no longer be purchased. ==Stats== The GR Corolla Morizo Edition has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=295|whval=3186|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1076|whval=2686|spdval=166}} ==Gallery== <gallery> File:Corolla_Morizo_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Morizo Edition. </gallery> c43e1bcfef66bd523484427cd85252f3f28c3954 2018 Dodje Challenger Demon 0 329 501 2022-08-24T02:58:00Z HPtheamazing 9 Created page with "{{Carinfo|name=2018 Dodje Challenger Demon|image=Demon_front.jpg|make=Dodje|type=Coupe|price=86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}}" wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon_front.jpg|make=Dodje|type=Coupe|price=86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} 62ce529aac542c1e95fd6fb42f5333e900733864 502 501 2022-08-24T02:59:46Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=|make=Dodje|type=Coupe|price=86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} 83298922d0cf5a13ea805542f806c1fc1c316194 503 502 2022-08-24T03:00:56Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.png|make=Dodje|type=Coupe|price=86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} f53fe34a6eb8a7711a833187d059cb2553d947c0 File:FK8 Front.jpg 6 330 504 2022-08-24T03:03:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FK8 Rear.jpg 6 331 505 2022-08-24T03:03:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Focus Front.jpg 6 332 506 2022-08-24T03:04:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Focus Rear.jpg 6 333 507 2022-08-24T03:04:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Veloster Front.jpg 6 334 508 2022-08-24T03:04:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Veloster Rear.jpg 6 335 509 2022-08-24T03:04:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EK9 Front.jpg 6 336 510 2022-08-24T03:04:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EK9 Rear.jpg 6 337 511 2022-08-24T03:05:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fiesta Front.jpg 6 338 512 2022-08-24T03:05:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fiesta Rear.jpg 6 339 513 2022-08-24T03:05:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS3 Front.jpg 6 340 514 2022-08-24T03:06:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS3 Rear.jpg 6 341 515 2022-08-24T03:06:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Front.jpg 6 342 516 2022-08-24T03:06:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Rear.jpg 6 343 517 2022-08-24T03:06:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Corolla GR Front.jpg 6 344 518 2022-08-24T03:06:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Corolla GR Rear.jpg 6 345 519 2022-08-24T03:07:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Corolla Circuit Front.jpg 6 346 520 2022-08-24T03:07:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Corolla Circuit Rear.jpg 6 347 521 2022-08-24T03:07:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2018 Handa Civic Type R 0 348 522 2022-08-24T03:11:59Z S30Z 2 Created page with "{{Carinfo |name=2018 Handa Civic Type R |image=FK8_Front.jpg |make=Handa |type=Hatchback |price=$46,490 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#FK8_(2017;_based_on_tenth_generation_Civic) |rlname=Honda Civic Type R (6th gen.) |limited=0 |electric=0 }} The 2018 Handa Civic Type R is a five door hatchback produced by [[Handa]]. It can be purchased from the dealership for $46,490. ==Stats== The Civic Type R has 5..." wikitext text/x-wiki {{Carinfo |name=2018 Handa Civic Type R |image=FK8_Front.jpg |make=Handa |type=Hatchback |price=$46,490 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#FK8_(2017;_based_on_tenth_generation_Civic) |rlname=Honda Civic Type R (6th gen.) |limited=0 |electric=0 }} The 2018 Handa Civic Type R is a five door hatchback produced by [[Handa]]. It can be purchased from the dealership for $46,490. ==Stats== The Civic Type R has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=305|tqval=295|whval=3042|spdval=161|drv=FWD}} {{Maxstats|hpval=1241|tqval=1260|whval=2542|spdval=183}} ==Gallery== <gallery> File:FK8_Rear.jpg|Rear view of the 2018 Handa Civic Type R. </gallery> 297f4cbcaeb41483fde67498e242923c05ae61bd 2018 Fard Focus RS 0 349 523 2022-08-24T03:12:17Z S30Z 2 Created page with "{{Carinfo |name=2018 Fard Focus RS |image=Focus_Front.jpg |make=Fard |type=Hatchback |price=$35,650 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Focus_(third_generation)#Focus_RS |rlname=Ford Focus RS |limited=0 |electric=0 }} The 2018 Fard Focus RS is a five door hatchback produced by [[Fard]]. It can be purchased from the dealership for $35,650. ==Stats== The Focus RS has 5 seats and a fuel capacity of 12 gallons. {{Stockstat..." wikitext text/x-wiki {{Carinfo |name=2018 Fard Focus RS |image=Focus_Front.jpg |make=Fard |type=Hatchback |price=$35,650 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Focus_(third_generation)#Focus_RS |rlname=Ford Focus RS |limited=0 |electric=0 }} The 2018 Fard Focus RS is a five door hatchback produced by [[Fard]]. It can be purchased from the dealership for $35,650. ==Stats== The Focus RS has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=350|tqval=350|whval=3459|spdval=164|drv=AWD}} {{Maxstats|hpval=1277|tqval=1200|whval=2959|spdval=178}} ==Gallery== <gallery> File:Focus_Rear.jpg|Rear view of the 2018 Fard Focus RS. </gallery> 090e69e472a0316932a7a96428690ccb3acd04cc 2019 Hayunai Veloster N 0 350 524 2022-08-24T03:12:36Z S30Z 2 Created page with "{{Carinfo |name=2019 Hayunai Veloster N |image=Veloster_Front.jpg |make=Hayunai |type=Hatchback |price=$31,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Veloster#Second_generation_(JS;_2018) |rlname=Hyundai Veloster N |limited=0 |electric=0 }} The 2019 Hayunai Veloster N is a four door hatchback produced by [[Hayunai]]. It can be purchased from the dealership for $31,590. ==Stats== The Veloster N has 4 seats and a fuel cap..." wikitext text/x-wiki {{Carinfo |name=2019 Hayunai Veloster N |image=Veloster_Front.jpg |make=Hayunai |type=Hatchback |price=$31,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Veloster#Second_generation_(JS;_2018) |rlname=Hyundai Veloster N |limited=0 |electric=0 }} The 2019 Hayunai Veloster N is a four door hatchback produced by [[Hayunai]]. It can be purchased from the dealership for $31,590. ==Stats== The Veloster N has 4 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=275|tqval=260|whval=3106|spdval=148|drv=FWD}} {{Maxstats|hpval=1188|tqval=1146|whval=2606|spdval=185}} ==Gallery== <gallery> File:Veloster_Rear.jpg|Rear view of the 2019 Hayunai Veloster N. </gallery> 232b6a2535a238c1515e0f8570069a6e1ba8829b 1998 Handa Civic Type R 0 351 525 2022-08-24T03:13:00Z S30Z 2 Created page with "{{Carinfo |name=1998 Handa Civic Type R |image=EK9_Front.jpg |make=Handa |type=Hatchback |price=$19,739 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#EK9_(1997;_based_on_sixth_generation_Civic) |rlname=Honda Civic Type R (1st gen.) |limited=0 |electric=0 }} The 1998 Handa Civic Type R is a three door hatchback produced by [[Handa]]. It can be purchased from the dealership for $19,739. ==Stats== The Veloster N has 4..." wikitext text/x-wiki {{Carinfo |name=1998 Handa Civic Type R |image=EK9_Front.jpg |make=Handa |type=Hatchback |price=$19,739 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#EK9_(1997;_based_on_sixth_generation_Civic) |rlname=Honda Civic Type R (1st gen.) |limited=0 |electric=0 }} The 1998 Handa Civic Type R is a three door hatchback produced by [[Handa]]. It can be purchased from the dealership for $19,739. ==Stats== The Veloster N has 4 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=182|tqval=118|whval=2359|spdval=144|drv=FWD}} {{Maxstats|hpval=1001|tqval=823|whval=1859|spdval=158}} ==Gallery== <gallery> File:EK9_Rear.jpg|Rear view of the 1998 Handa Civic Type R. </gallery> a51a9df99672dc31acb428c973eaeba497e3734e 2014 Fard Fiesta ST 0 352 526 2022-08-24T03:13:22Z S30Z 2 Created page with "{{Carinfo |name=2014 Fard Fiesta ST |image=Fiesta_Front.jpg |make=Fard |type=Hatchback |price=$21,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fiesta_(sixth_generation)#Fiesta_ST |rlname=Ford Fiesta ST |limited=0 |electric=0 }} The 2014 Fard Fiesta ST is a five door hatchback produced by [[Fard]]. It can be purchased from the dealership for $21,990. ==Stats== The Fiesta ST has 5 seats and a fuel capacity of 12 gallons. {{St..." wikitext text/x-wiki {{Carinfo |name=2014 Fard Fiesta ST |image=Fiesta_Front.jpg |make=Fard |type=Hatchback |price=$21,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fiesta_(sixth_generation)#Fiesta_ST |rlname=Ford Fiesta ST |limited=0 |electric=0 }} The 2014 Fard Fiesta ST is a five door hatchback produced by [[Fard]]. It can be purchased from the dealership for $21,990. ==Stats== The Fiesta ST has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=197|tqval=202|whval=2743|spdval=127|drv=FWD}} {{Maxstats|hpval=1111|tqval=953|whval=2243|spdval=185}} ==Gallery== <gallery> File:Fiesta_Rear.jpg|Rear view of the 2014 Fard Fiesta ST. </gallery> 3ed34393a6391ff3458aea0bf06d98a9a71b458f 2022 Owdi RS 3 Sportback 0 353 527 2022-08-24T03:13:41Z S30Z 2 Created page with "{{Carinfo |name=2022 Owdi RS 3 Sportback |image=RS3_Front.jpg |make=Owdi |type=Hatchback |price=$58,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A3#Fourth_generation_(Typ_8Y;_2020) |rlname=Audi RS3 Sportback (4th gen.) |limited=0 |electric=0 }} The 2022 Owdi RS 3 Sportback is a five door hatchback produced by [[Owdi]]. It can be purchased from the dealership for $58,900. ==Stats== The RS 3 Sportback has 5 seats and a fuel ca..." wikitext text/x-wiki {{Carinfo |name=2022 Owdi RS 3 Sportback |image=RS3_Front.jpg |make=Owdi |type=Hatchback |price=$58,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A3#Fourth_generation_(Typ_8Y;_2020) |rlname=Audi RS3 Sportback (4th gen.) |limited=0 |electric=0 }} The 2022 Owdi RS 3 Sportback is a five door hatchback produced by [[Owdi]]. It can be purchased from the dealership for $58,900. ==Stats== The RS 3 Sportback has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=401|tqval=368|whval=3461|spdval=175|drv=AWD}} {{Maxstats|hpval=1508|tqval=1434|whval=2961|spdval=247}} ==Gallery== <gallery> File:RS3_Rear.jpg|Rear view of the 2022 Owdi RS 3 Sportback. </gallery> 56a40b7a7cce0997dc04c6bbc9840d0c4ea5fe6b 1995 Handa Civic Si 0 354 528 2022-08-24T03:14:19Z S30Z 2 Created page with "{{Carinfo |name=1995 Handa Civic Si |image=EG6_Front.jpg |make=Handa |type=Hatchback |price=$2,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Fifth_generation_(1991) |rlname=Honda Civic (5th gen.) |limited=0 |electric=0 }} The 1995 Handa Civic Si is a three door hatchback produced by [[Handa]]. It can be purchased from the dealership for $2,450. ==Stats== The Civic Si has 5 seats and a fuel capacity of 12 gallons. {{St..." wikitext text/x-wiki {{Carinfo |name=1995 Handa Civic Si |image=EG6_Front.jpg |make=Handa |type=Hatchback |price=$2,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Fifth_generation_(1991) |rlname=Honda Civic (5th gen.) |limited=0 |electric=0 }} The 1995 Handa Civic Si is a three door hatchback produced by [[Handa]]. It can be purchased from the dealership for $2,450. ==Stats== The Civic Si has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=125|tqval=106|whval=2205|spdval=121|drv=FWD}} {{Maxstats|hpval=878|tqval=754|whval=1705|spdval=157}} ==Gallery== <gallery> File:EG6_Rear.jpg|Rear view of the 1995 Handa Civic Si. </gallery> 619f2d0f67969c2c4d2c5e3fa11c845aab1d30cf 2023 Toyoto GR Corolla 0 355 529 2022-08-24T03:14:52Z S30Z 2 Created page with "{{Carinfo |name=2023 Toyoto GR Corolla |image=Corolla_GR_Front.jpg |make=Toyoto |type=Hatchback |price=$32,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla |limited=0 |electric=0 }} The 2023 Toyoto GR Corolla is a five door hatchback produced by [[Toyoto]]. It can be purchased from the dealership for $32,250. ==Stats== The GR Corolla has 5 seats and a fuel capacity of 13 gallons. {{Stockst..." wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla |image=Corolla_GR_Front.jpg |make=Toyoto |type=Hatchback |price=$32,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla |limited=0 |electric=0 }} The 2023 Toyoto GR Corolla is a five door hatchback produced by [[Toyoto]]. It can be purchased from the dealership for $32,250. ==Stats== The GR Corolla has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=273|whval=3249|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1037|whval=2749|spdval=165}} ==Gallery== <gallery> File:Corolla_GR_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla. </gallery> 0272114fc7a43cb3d7852c11cc308a2451d97095 2023 Toyoto GR Corolla Circuit Edition 0 356 530 2022-08-24T03:15:47Z S30Z 2 Created page with "{{Carinfo |name=2023 Toyoto GR Corolla Circuit Edition |image=Corolla_Circuit_Front.jpg |make=Toyoto |type=Hatchback |price=$40,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Circuit Edition |limited=0 |electric=0 }} The 2023 Toyoto GR Corolla Circuit Edition is a five door hatchback produced by [[Toyoto]]. It can be purchased from the dealership for $40,550. ==Stats== The GR Corolla Circu..." wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Circuit Edition |image=Corolla_Circuit_Front.jpg |make=Toyoto |type=Hatchback |price=$40,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Circuit Edition |limited=0 |electric=0 }} The 2023 Toyoto GR Corolla Circuit Edition is a five door hatchback produced by [[Toyoto]]. It can be purchased from the dealership for $40,550. ==Stats== The GR Corolla Circuit Edition has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=273|whval=3292|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1037|whval=2792|spdval=165}} ==Gallery== <gallery> File:Corolla_Circuit_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Circuit Edition. </gallery> 06ead0f4b75d48ffb8024db5692a603a202ea5ed 2018 Dodje Challenger Demon 0 329 531 503 2022-08-24T04:27:39Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.png|make=Dodje|type=Coupe|price=86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} The 2018 Dodje Challenger Demon a 2-door American muscle car produced by Dodje, and it can be purchased from the dealership for $86,390. == Stats == The Demon has 4 seats and a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=840|tqval=717|whval=4,280|spdval=202|drv=RWD}}{{Maxstats|hpval=1,423|tqval=1,540|whval=3,780|spdval=207}} == Gallery == [[File:Demon back.png|left|thumb|Rear visual of the 2018 Dodje Challenger Demon]] f1c77ee50de46030040a5d7a28e5fe1bc48264e5 532 531 2022-08-24T04:28:34Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.png|make=Dodje|type=Coupe|price=86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} The 2018 Dodje Challenger Demon is a 2-door American muscle car produced by Dodje, and can be purchased from the dealership for $86,390. == Stats == The Demon has 4 seats and a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=840|tqval=717|whval=4,280|spdval=202|drv=RWD}}{{Maxstats|hpval=1,423|tqval=1,540|whval=3,780|spdval=207}} == Gallery == [[File:Demon back.png|left|thumb|Rear visual of the 2018 Dodje Challenger Demon]] be5310d47d06fbf32799bd95411316d52cab6caa 534 532 2022-08-24T04:32:38Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.png|make=Dodje|type=Coupe|price=$86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} The 2018 Dodje Challenger Demon is a 2-door American muscle car produced by Dodje, and can be purchased from the dealership for $86,390. == Stats == The Demon has 4 seats and a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=840|tqval=717|whval=4,280|spdval=202|drv=RWD}}{{Maxstats|hpval=1,423|tqval=1,540|whval=3,780|spdval=207}} == Gallery == [[File:Demon back.png|left|thumb|Rear visual of the 2018 Dodje Challenger Demon]] 4cff406049867a5aae12d5edfd0aceee3eeb98e1 File:Veyron Rear.jpg 6 357 535 2022-08-24T04:51:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Veyron Front.jpg 6 358 536 2022-08-24T04:51:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:918 Rear.jpg 6 359 537 2022-08-24T04:51:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:918 Front.jpg 6 360 538 2022-08-24T04:51:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:P1 Rear.jpg 6 361 539 2022-08-24T04:52:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:P1 Front.jpg 6 362 540 2022-08-24T04:52:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LaFurai Rear.jpg 6 363 541 2022-08-24T04:52:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LaFurai Front.jpg 6 364 542 2022-08-24T04:52:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Roadster Rear.jpg 6 365 543 2022-08-24T04:53:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Roadster Front.jpg 6 366 544 2022-08-24T04:53:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Huayra Rear.jpg 6 367 545 2022-08-24T04:53:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Huayra Front.jpg 6 368 546 2022-08-24T04:53:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2018 Paijani Huayra 0 369 547 2022-08-24T04:54:14Z S30Z 2 Created page with "{{Carinfo |name=2018 Paijani Huayra |image=Huayra_Front.jpg |make=Paijani |type=Hyper |price=$1,400,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Pagani_Huayra |rlname=Pagani Huayra |limited=0 |electric=0 }} The 2018 Paijani Huayra is a hypercar produced by [[Paijani]]. It can be purchased from the dealership for $1,400,000. ==Stats== The Huayra has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=720|tqval=782|whval..." wikitext text/x-wiki {{Carinfo |name=2018 Paijani Huayra |image=Huayra_Front.jpg |make=Paijani |type=Hyper |price=$1,400,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Pagani_Huayra |rlname=Pagani Huayra |limited=0 |electric=0 }} The 2018 Paijani Huayra is a hypercar produced by [[Paijani]]. It can be purchased from the dealership for $1,400,000. ==Stats== The Huayra has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=720|tqval=782|whval=3175|spdval=219|drv=RWD}} {{Maxstats|hpval=1238|tqval=1133|whval=2675|spdval=223}} ==Gallery== <gallery> File:Huayra_Rear.jpg|Rear view of the 2018 Paijani Huayra. </gallery> d3c9187d37c3d2689838cf7da8e074a1b41c0b85 2021 Edison Roadster 0 370 548 2022-08-24T04:55:00Z S30Z 2 Created page with "{{Carinfo |name=2021 Edison Roadster |image=Roadster_Front.jpg |make=Edison |type=Hyper |price=$3,500,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Roadster_(second_generation) |rlname=Tesla Roadster (2nd gen.) |limited=0 |electric=1 }} The 2021 Edison Roadster is a hypercar produced by [[Edison]]. It can be purchased from the dealership for $3,500,000. ==Stats== The Roadster has 4 seats. As an electric vehicle, engine and t..." wikitext text/x-wiki {{Carinfo |name=2021 Edison Roadster |image=Roadster_Front.jpg |make=Edison |type=Hyper |price=$3,500,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Roadster_(second_generation) |rlname=Tesla Roadster (2nd gen.) |limited=0 |electric=1 }} The 2021 Edison Roadster is a hypercar produced by [[Edison]]. It can be purchased from the dealership for $3,500,000. ==Stats== The Roadster has 4 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=1242|tqval=7376|whval=4409|spdval=256|drv=AWD}} {{Maxstats|hpval=1242|tqval=7376|whval=3909|spdval=256}} ==Gallery== <gallery> File:Roadster_Rear.jpg|Rear view of the 2021 Edison Roadster. </gallery> 851a575cfd64ce5b7a6b771087e5dd47870bcb35 2014 Furai LaFurai 0 371 549 2022-08-24T04:55:25Z S30Z 2 Created page with "{{Carinfo |name=2014 Furai LaFurai |image=LaFurai_Front.jpg |make=Furai |type=Hyper |price=$2,875,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/LaFerrari |rlname=Ferrari LaFerrari |limited=0 |electric=0 }} The 2014 Furai LaFurai is a hypercar produced by [[Furai]]. It can be purchased from the dealership for $2,875,000. ==Stats== The LaFurai has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=948|tqval=648|whval=297..." wikitext text/x-wiki {{Carinfo |name=2014 Furai LaFurai |image=LaFurai_Front.jpg |make=Furai |type=Hyper |price=$2,875,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/LaFerrari |rlname=Ferrari LaFerrari |limited=0 |electric=0 }} The 2014 Furai LaFurai is a hypercar produced by [[Furai]]. It can be purchased from the dealership for $2,875,000. ==Stats== The LaFurai has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=948|tqval=648|whval=2976|spdval=233|drv=RWD}} {{Maxstats|hpval=1578|tqval=1312|whval=2476|spdval=264}} ==Gallery== <gallery> File:LaFurai_Rear.jpg|Rear view of the 2018 Paijani Huayra. </gallery> 9f3238cfe34d8db38902478db7f6a2f48ccab203 2015 McFaren P1 0 372 550 2022-08-24T04:56:07Z S30Z 2 Created page with "{{Carinfo |name=2015 McFaren P1 |image=P1_Front.jpg |make=McFaren |type=Hyper |price=$1,595,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_P1 |rlname=McLaren P1 |limited=0 |electric=0 }} The 2015 McFaren P1 is a hypercar produced by [[McFaren]]. It can be purchased from the dealership for $1,595,000. ==Stats== The P1 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=903|tqval=723|whval=3411|spdval=228|drv=R..." wikitext text/x-wiki {{Carinfo |name=2015 McFaren P1 |image=P1_Front.jpg |make=McFaren |type=Hyper |price=$1,595,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_P1 |rlname=McLaren P1 |limited=0 |electric=0 }} The 2015 McFaren P1 is a hypercar produced by [[McFaren]]. It can be purchased from the dealership for $1,595,000. ==Stats== The P1 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=903|tqval=723|whval=3411|spdval=228|drv=RWD}} {{Maxstats|hpval=1536|tqval=1353|whval=2911|spdval=259}} ==Gallery== <gallery> File:P1_Rear.jpg|Rear view of the 2015 McFaren P1. </gallery> 719d0be275cf54c3c7839ba6d06bafb675c6334a 2015 Pohrse 918 Spyder Roadster 0 373 551 2022-08-24T04:56:24Z S30Z 2 Created page with "{{Carinfo |name=2015 Porhse 918 Spyder Roadster |image=918_Front.jpg |make=Porhse |type=Hyper |price=$1,344,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_918_Spyder |rlname=Porsche 918 Spyder |limited=0 |electric=0 }} The 2015 Porhse 918 Spyder Roadster is a hypercar produced by [[Porhse]]. It can be purchased from the dealership for $1,344,900. ==Stats== The LaFurai has 2 seats and a fuel capacity of 18 gallons. {{Stocks..." wikitext text/x-wiki {{Carinfo |name=2015 Porhse 918 Spyder Roadster |image=918_Front.jpg |make=Porhse |type=Hyper |price=$1,344,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_918_Spyder |rlname=Porsche 918 Spyder |limited=0 |electric=0 }} The 2015 Porhse 918 Spyder Roadster is a hypercar produced by [[Porhse]]. It can be purchased from the dealership for $1,344,900. ==Stats== The LaFurai has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=873|tqval=931|whval=3691|spdval=230|drv=AWD}} {{Maxstats|hpval=1487|tqval=897|whval=3190|spdval=248}} ==Gallery== <gallery> File:918_Rear.jpg|Rear view of the 2015 Porhse 918 Spyder Roadster. </gallery> 271c9a2e7caa15b166f9487e4093b159dabad1e2 2011 Bulatti Veyron Super Sport 0 374 552 2022-08-24T04:58:25Z S30Z 2 Created page with "{{Carinfo |name=2011 Bulatti Veyron Super Sport |image=Veyron_Front.jpg |make=Bulatti |type=Hyper |price=$3,201,915 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bugatti_Veyron#Bugatti_Veyron_16.4_Super_Sport,_World_Record_Edition_(2010%E2%80%932011) |rlname=Bugatti Veyron Super Sport |limited=0 |electric=0 }} The 2011 Bulatti Veyron Super Sport is a hypercar produced by [[Bulatti]]. It can be purchased from the dealership for $3,201,9..." wikitext text/x-wiki {{Carinfo |name=2011 Bulatti Veyron Super Sport |image=Veyron_Front.jpg |make=Bulatti |type=Hyper |price=$3,201,915 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bugatti_Veyron#Bugatti_Veyron_16.4_Super_Sport,_World_Record_Edition_(2010%E2%80%932011) |rlname=Bugatti Veyron Super Sport |limited=0 |electric=0 }} The 2011 Bulatti Veyron Super Sport is a hypercar produced by [[Bulatti]]. It can be purchased from the dealership for $3,201,915. ==Stats== The Veyron has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=1184|tqval=1106|whval=4387|spdval=267|drv=AWD}} {{Maxstats|hpval=1696|tqval=1206|whval=3887|spdval=272}} ==Gallery== <gallery> File:Veyron_Rear.jpg|Rear view of the 2011 Bulatti Veyron Super Sport. </gallery> 341591ceed3efc244581d6f3f8951b9646d6be2f Apartment Concierge 0 290 553 455 2022-08-24T06:15:42Z S30Z 2 wikitext text/x-wiki The Apartment Concierge job requires staying inside the Gulf Paradise Condos, located across from Seaside. Players do not need to own any gamepass to work at this job. All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' *Provide citizens with information about available apartments/condos *Maintain vacant properties *Enforce housing rules on tenants {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |Assistant |250 |- |Concierge |N/A |- |Head Concierge |N/A |- |Supervisor |N/A |- |Manager |N/A |} [[Category:Jobs]] dc99b24667b11b4f2c61b60e3d1c595dd5ca6ac1 Cafe Worker 0 291 554 456 2022-08-24T06:15:49Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Criminal 0 292 555 457 2022-08-24T06:15:54Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Dealership Employee 0 293 556 458 2022-08-24T06:16:37Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Fintech Employee 0 294 557 459 2022-08-24T06:16:49Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 McBloxxer's Employee 0 295 558 460 2022-08-24T06:17:00Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Mirage Employee 0 296 559 461 2022-08-24T06:17:09Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Police 0 297 560 462 2022-08-24T06:17:15Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 RW Bank Employee 0 298 561 463 2022-08-24T06:17:40Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Rift Driver 0 299 562 464 2022-08-24T06:17:47Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 StudRac Employee 0 300 563 465 2022-08-24T06:17:54Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Unemployed 0 303 564 468 2022-08-24T06:18:13Z S30Z 2 wikitext text/x-wiki Unemployed is the default job all players are set to when first joining the game. Players are not paid when working this job. The job name is self explanatory; you are unemployed. Players assigned to this job will respawn at the default spawn location near the beach. [[Category:Jobs]] dcfa87b8fe02f241611dbb81388589b408dc6356 CVC Pharmacy Employee 0 307 565 472 2022-08-24T06:18:20Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Seaside Bar and Grill 0 308 566 473 2022-08-24T06:19:34Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Bubmart Employee 0 310 567 475 2022-08-24T06:19:47Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Hospital Worker 0 312 568 477 2022-08-24T06:20:09Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Firefighter 0 313 569 478 2022-08-24T06:20:25Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Sheriff 0 315 570 482 2022-08-24T06:21:03Z S30Z 2 wikitext text/x-wiki This job is requires the Law Enforcement Gamepass. More info coming soon. [[Category:Jobs]] c2f3c29a891543c00a09a0f7fdacc85b8f710eef Paramedic 0 316 571 483 2022-08-24T06:30:48Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Dippin' Donuts Employee 0 317 572 484 2022-08-24T06:32:38Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Automart Employee 0 318 573 485 2022-08-24T06:32:45Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Vorzen Employee 0 319 574 486 2022-08-24T06:33:53Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Waterpark Employee 0 320 575 487 2022-08-24T06:34:02Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Sunset Performance 0 321 576 488 2022-08-24T06:34:08Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 Community Service Aide 0 322 577 489 2022-08-24T06:34:16Z S30Z 2 wikitext text/x-wiki This job requires the Law Enforcement Gamepass. More info coming soon. [[Category:Jobs]] b1f77d5721e6ff56d31c142fecf4d8278fb7104a Sussy's Mechanic Shop 0 323 578 490 2022-08-24T06:34:22Z S30Z 2 wikitext text/x-wiki Coming Soon [[Category:Jobs]] a0448e7883dd72f53d524e77a3367c1e5d8d9d68 File:Jobs.jpg 6 375 579 2022-08-24T06:42:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Category:Jobs 14 289 580 497 2022-08-24T06:43:04Z S30Z 2 wikitext text/x-wiki <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Jobs.jpg|frameless|800x800px]] </div> Players can earn money in game by selecting one of many jobs listed below when in game. Each job has a unique set of ranks and pay rates. With all jobs, getting promoted gives you the next rank, which has a corresponding paycheck that can vary depending on what gamepasses you own. Being employed at most jobs requires players to stay inside or close to the location of employment if they would like to be paid. 3cc33cab6832ebefe12c0c8ddc29ea9e449863e2 File:Ultimate Aero Rear.jpg 6 376 581 2022-08-24T07:07:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ultimate Aero Front.jpg 6 377 582 2022-08-24T07:08:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Agera Interior.jpg 6 378 583 2022-08-24T07:08:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Agera Rear.jpg 6 379 584 2022-08-24T07:08:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Agera Front.jpg 6 380 585 2022-08-24T07:08:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Chiron Rear.jpg 6 381 586 2022-08-24T07:08:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Chiron Front.jpg 6 382 587 2022-08-24T07:08:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 Bulatti Chiron 0 383 588 2022-08-24T07:09:24Z S30Z 2 Created page with "{{Carinfo |name=2017 Bulatti Chiron |image=Chiron_Front.jpg |make=Bulatti |type=Hyper |price=$3,450,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron |rlname=Bugatti Chiron |limited=0 |electric=0 }} The 2017 Bulatti Chiron is a hypercar produced by [[Bulatti]]. It can be purchased from the dealership for $3,450,000. ==Stats== The Chiron has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=1479|tqval=1176|w..." wikitext text/x-wiki {{Carinfo |name=2017 Bulatti Chiron |image=Chiron_Front.jpg |make=Bulatti |type=Hyper |price=$3,450,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron |rlname=Bugatti Chiron |limited=0 |electric=0 }} The 2017 Bulatti Chiron is a hypercar produced by [[Bulatti]]. It can be purchased from the dealership for $3,450,000. ==Stats== The Chiron has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=1479|tqval=1176|whval=4358|spdval=253|drv=AWD}} {{Maxstats|hpval=1984|tqval=1411|whval=3858|spdval=277}} ==Gallery== <gallery> File:Chiron_Rear.jpg|Rear view of the 2017 Bulatti Chiron. </gallery> 3419d902cc8835f45d5fd1fec546f10abb776077 2014 Koneggsaga Agera R 0 384 589 2022-08-24T07:09:37Z S30Z 2 Created page with "{{Carinfo |name=2014 Koneggsaga Agera R |image=Agera_Front.jpg |make=Koneggsaga |type=Hyper |price=$3,100,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera#Koenigsegg_Agera_R_%282011%E2%80%932014%29= |rlname=Koenigsegg Agera R |limited=0 |electric=0 }} The 2014 Koneggsaga Agera R is a hypercar produced by [[Koneggsaga]]. It can be purchased from the dealership for $3,100,000. ==Stats== The Agera has 2 seats and a fuel..." wikitext text/x-wiki {{Carinfo |name=2014 Koneggsaga Agera R |image=Agera_Front.jpg |make=Koneggsaga |type=Hyper |price=$3,100,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera#Koenigsegg_Agera_R_%282011%E2%80%932014%29= |rlname=Koenigsegg Agera R |limited=0 |electric=0 }} The 2014 Koneggsaga Agera R is a hypercar produced by [[Koneggsaga]]. It can be purchased from the dealership for $3,100,000. ==Stats== The Agera has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=1140|tqval=886|whval=3164|spdval=257|drv=RWD}} {{Maxstats|hpval=1648|tqval=1251|whval=2664|spdval=277}} ==Gallery== <gallery> File:Agera_Rear.jpg|Rear view of the 2014 Koneggsaga Agera R. File:Agera_Interior.jpg|Interior shot of the 2014 Koneggsaga Agera R. </gallery> 60fa079c682cb6cb926066622f39bf1a53aac6f6 2010 CSS Ultimate Aero 0 385 590 2022-08-24T07:10:15Z S30Z 2 Created page with "{{Carinfo |name=2010 CSS Ultimate Aero |image=Ultimate_Aero_Front.jpg |make=CSS |type=Hyper |price=$740,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/SSC_Ultimate_Aero |rlname=SSC Ultimate Aero |limited=0 |electric=0 }} The 2010 CSS Ultimate Aero is a hypercar produced by [[CSS]]. It can be purchased from the dealership for $740,000. ==Stats== The Ultimate Aero has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=128..." wikitext text/x-wiki {{Carinfo |name=2010 CSS Ultimate Aero |image=Ultimate_Aero_Front.jpg |make=CSS |type=Hyper |price=$740,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/SSC_Ultimate_Aero |rlname=SSC Ultimate Aero |limited=0 |electric=0 }} The 2010 CSS Ultimate Aero is a hypercar produced by [[CSS]]. It can be purchased from the dealership for $740,000. ==Stats== The Ultimate Aero has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=1287|tqval=1112|whval=2756|spdval=269|drv=RWD}} {{Maxstats|hpval=1690|tqval=1283|whval=2256|spdval=274}} ==Gallery== <gallery> File:Ultimate_Aero_Rear.jpg|Rear view of the 2010 CSS Ultimate Aero. </gallery> 4c9311608448dc08a7652a5677146465e4db6db8 File:Pacifica Front.jpg 6 386 591 2022-08-24T07:54:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pacifica Rear.jpg 6 387 592 2022-08-24T07:54:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Caravan Rear.jpg 6 388 593 2022-08-24T07:55:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Caravan Front.jpg 6 389 594 2022-08-24T07:55:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Odyssey Rear.jpg 6 390 595 2022-08-24T07:55:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Odyssey Front.jpg 6 391 596 2022-08-24T07:55:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Chrystal Pacifica 0 392 597 2022-08-24T07:56:23Z S30Z 2 Created page with "{{Carinfo |name=2019 Chrystal Pacifica |image=Pacifica_Front.jpg |make=Chrystal |type=Van |price=$39,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chrysler_Pacifica_(minivan) |rlname=Chrysler Pacifica |limited=0 |electric=0 }} The 2019 Chrystal Pacifica is a five door minivan produced by [[Chrystal]]. It can be purchased from the dealership for $39,990. ==Stats== The Pacifica has 7 seats and a fuel capacity of 19 gallons. {{Stock..." wikitext text/x-wiki {{Carinfo |name=2019 Chrystal Pacifica |image=Pacifica_Front.jpg |make=Chrystal |type=Van |price=$39,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chrysler_Pacifica_(minivan) |rlname=Chrysler Pacifica |limited=0 |electric=0 }} The 2019 Chrystal Pacifica is a five door minivan produced by [[Chrystal]]. It can be purchased from the dealership for $39,990. ==Stats== The Pacifica has 7 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=287|tqval=262|whval=4300|spdval=114|drv=FWD}} {{Maxstats|hpval=943|tqval=975|whval=3800|spdval=194}} ==Gallery== <gallery> File:Pacifica_Rear.jpg|Rear view of the 2019 Chrystal Pacifica. </gallery> 58e4af0bbfdb85635316c044aa6279087e9035f0 2008 Dodje Grand Caravan 0 393 598 2022-08-24T07:56:38Z S30Z 2 Created page with "{{Carinfo |name=2008 Dodje Grand Caravan |image=Caravan_Front.jpg |make=Dodje |type=Van |price=$6,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Caravan#Fifth_generation_(2008%E2%80%932020) |rlname=Dodge Grand Caravan (5th gen.) |limited=0 |electric=0 }} The 2008 Dodje Grand Caravan is a five door minivan produced by [[Dodje]]. It can be purchased from the dealership for $6,995. ==Stats== The Grand Caravan has 7 seats and a f..." wikitext text/x-wiki {{Carinfo |name=2008 Dodje Grand Caravan |image=Caravan_Front.jpg |make=Dodje |type=Van |price=$6,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Caravan#Fifth_generation_(2008%E2%80%932020) |rlname=Dodge Grand Caravan (5th gen.) |limited=0 |electric=0 }} The 2008 Dodje Grand Caravan is a five door minivan produced by [[Dodje]]. It can be purchased from the dealership for $6,995. ==Stats== The Grand Caravan has 7 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=175|tqval=205|whval=4091|spdval=112|drv=FWD}} {{Maxstats|hpval=776|tqval=707|whval=3591|spdval=153}} ==Gallery== <gallery> File:Caravan_Rear.jpg|Rear view of the 2008 Dodje Grand Caravan. </gallery> d92d4b2bf951c9f57b52785f949222bd265a1967 2021 Handa Odyssey 0 394 599 2022-08-24T07:56:57Z S30Z 2 Created page with "{{Carinfo |name=2021 Handa Odyssey |image=Odyssey_Front.jpg |make=Handa |type=Van |price=$42,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Odyssey_(North_America)#Fifth_generation_(RL6;_2018) |rlname=Honda Odyssey(5th gen.) |limited=0 |electric=0 }} The 2021 Handa Odyssey is a five door minivan produced by [[Handa]]. It can be purchased from the dealership for $42,500. ==Stats== The Odyssey has 7 seats and a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=2021 Handa Odyssey |image=Odyssey_Front.jpg |make=Handa |type=Van |price=$42,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Odyssey_(North_America)#Fifth_generation_(RL6;_2018) |rlname=Honda Odyssey(5th gen.) |limited=0 |electric=0 }} The 2021 Handa Odyssey is a five door minivan produced by [[Handa]]. It can be purchased from the dealership for $42,500. ==Stats== The Odyssey has 7 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=279|tqval=280|whval=4480|spdval=113|drv=FWD}} {{Maxstats|hpval=933|tqval=1292|whval=3980|spdval=196}} ==Gallery== <gallery> File:Odyssey_Rear.jpg|Rear view of the 2021 Handa Odyssey. </gallery> 036fe715f1bf4a07a01c968105852419059c1dc7 Category:Van 14 395 600 2022-08-24T07:57:27Z S30Z 2 Created page with "All vans in Southwest Florida. [[Category: Vehicles]]" wikitext text/x-wiki All vans in Southwest Florida. [[Category: Vehicles]] 9d969c7249e3b4a8e7218eb1d30c3b6aa32166ba Template:Jobinfo5 10 396 601 2022-08-24T19:10:49Z S30Z 2 Created page with "{{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}..." wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |- |{{{rank6}}} |{{{rank6pay}}} |- |{{{rank7}}} |{{{rank7pay}}} |- |{{{rank8}}} |{{{rank8pay}}} |- |{{{rank9}}} |{{{rank9pay}}} |- |{{{rank10}}} |{{{rank10pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "suggested": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "suggested": true }, "rank5": { "label": "Position 5 Name", "type": "string", "suggested": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "suggested": true }, "rank6": { "label": "Position 6 Name", "type": "string", "suggested": true }, "rank6pay": { "label": "Position 6 Pay", "type": "string", "suggested": true }, "rank7": { "label": "Position 7 Name", "type": "string", "suggested": true }, "rank7pay": { "label": "Position 7 Pay", "type": "string", "suggested": true }, "rank8": { "label": "Position 8 Name", "type": "string", "suggested": true }, "rank8pay": { "label": "Position 8 Pay", "type": "string", "suggested": true }, "rank9": { "label": "Position 9 Name", "type": "string", "suggested": true }, "rank9pay": { "label": "Position 9 Pay", "type": "string", "suggested": true }, "rank10": { "label": "Position 10 Name", "type": "string", "suggested": true }, "rank10pay": { "label": "Position 10 Pay", "type": "string", "suggested": true } }, "description": "Job page template" } </templatedata> </noinclude> 6d222a9d9870665cef06c0ae145777ea71428b2a 602 601 2022-08-24T19:16:46Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "suggested": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "suggested": true }, "rank5": { "label": "Position 5 Name", "type": "string", "suggested": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "suggested": true } }, "description": "Job page template" } </templatedata> </noinclude> e98d2d216dfcbe6f3c333057de2e85b62f4f91b2 603 602 2022-08-24T19:17:06Z S30Z 2 S30Z moved page [[Template:Jobinfo]] to [[Template:Jobinfo5]] wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "suggested": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "suggested": true }, "rank5": { "label": "Position 5 Name", "type": "string", "suggested": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "suggested": true } }, "description": "Job page template" } </templatedata> </noinclude> e98d2d216dfcbe6f3c333057de2e85b62f4f91b2 609 603 2022-08-24T19:45:48Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true }, "rank5": { "label": "Position 5 Name", "type": "string", "required": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "required": true } }, "description": "Job page template" } </templatedata> </noinclude> a06ee32eb2181193aa4548b05ef1d6ca5157d338 Apartment Concierge 0 290 605 553 2022-08-24T19:20:57Z S30Z 2 wikitext text/x-wiki {{Jobinfo5|desc=The Apartment Concierge job requires staying inside the Gulf Paradise Condos, located across from Seaside. Players do not need to own any gamepass to work at this job.|resp=*Provide citizens with information about available apartments/condos *Maintain vacant properties *Enforce housing rules on tenants|rank1=Assistant|rank1pay=$250|rank2=Concierge|rank2pay=N/A|rank3=Head Concierge|rank3pay=N/A|rank4=Supervisor|rank4pay=N/A|rank5=Manager|rank5pay=N/A}} 18924d14cb373793f6d9281b2e6afbf5895ab28b Template:Jobinfo10 10 398 606 2022-08-24T19:42:51Z S30Z 2 Created page with "{{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}..." wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |- |{{{rank6}}} |{{{rank6pay}}} |- |{{{rank7}}} |{{{rank7pay}}} |- |{{{rank8}}} |{{{rank8pay}}} |- |{{{rank9}}} |{{{rank9pay}}} |- |{{{rank10}}} |{{{rank10pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description for jobs with 10 positions (Fintech)", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "suggested": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "suggested": true }, "rank5": { "label": "Position 5 Name", "type": "string", "suggested": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "suggested": true }, "rank6": { "label": "Position 6 Name", "type": "string", "suggested": true }, "rank6pay": { "label": "Position 6 Pay", "type": "string", "suggested": true }, "rank7": { "label": "Position 7 Name", "type": "string", "suggested": true }, "rank7pay": { "label": "Position 7 Pay", "type": "string", "suggested": true }, "rank8": { "label": "Position 8 Name", "type": "string", "suggested": true }, "rank8pay": { "label": "Position 8 Pay", "type": "string", "suggested": true }, "rank9": { "label": "Position 9 Name", "type": "string", "suggested": true }, "rank9pay": { "label": "Position 9 Pay", "type": "string", "suggested": true }, "rank10": { "label": "Position 10 Name", "type": "string", "suggested": true }, "rank10pay": { "label": "Position 10 Pay", "type": "string", "suggested": true } }, "description": "Job page template" } </templatedata> </noinclude> 4bff35dbbe0d8ea9cd1aa9d279515cfff7a7c4e7 607 606 2022-08-24T19:43:18Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |- |{{{rank6}}} |{{{rank6pay}}} |- |{{{rank7}}} |{{{rank7pay}}} |- |{{{rank8}}} |{{{rank8pay}}} |- |{{{rank9}}} |{{{rank9pay}}} |- |{{{rank10}}} |{{{rank10pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "suggested": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "suggested": true }, "rank5": { "label": "Position 5 Name", "type": "string", "suggested": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "suggested": true }, "rank6": { "label": "Position 6 Name", "type": "string", "suggested": true }, "rank6pay": { "label": "Position 6 Pay", "type": "string", "suggested": true }, "rank7": { "label": "Position 7 Name", "type": "string", "suggested": true }, "rank7pay": { "label": "Position 7 Pay", "type": "string", "suggested": true }, "rank8": { "label": "Position 8 Name", "type": "string", "suggested": true }, "rank8pay": { "label": "Position 8 Pay", "type": "string", "suggested": true }, "rank9": { "label": "Position 9 Name", "type": "string", "suggested": true }, "rank9pay": { "label": "Position 9 Pay", "type": "string", "suggested": true }, "rank10": { "label": "Position 10 Name", "type": "string", "suggested": true }, "rank10pay": { "label": "Position 10 Pay", "type": "string", "suggested": true } }, "description": "Job page template for jobs with 10 positions (Fintech)" } </templatedata> </noinclude> 7c7cb3a2f90483db7bbeaafde3d3b13b349e059a 611 607 2022-08-24T19:46:49Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |- |{{{rank6}}} |{{{rank6pay}}} |- |{{{rank7}}} |{{{rank7pay}}} |- |{{{rank8}}} |{{{rank8pay}}} |- |{{{rank9}}} |{{{rank9pay}}} |- |{{{rank10}}} |{{{rank10pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true }, "rank5": { "label": "Position 5 Name", "type": "string", "required": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "required": true }, "rank6": { "label": "Position 6 Name", "type": "string", "required": true }, "rank6pay": { "label": "Position 6 Pay", "type": "string", "required": true }, "rank7": { "label": "Position 7 Name", "type": "string", "required": true }, "rank7pay": { "label": "Position 7 Pay", "type": "string", "required": true }, "rank8": { "label": "Position 8 Name", "type": "string", "required": true }, "rank8pay": { "label": "Position 8 Pay", "type": "string", "required": true }, "rank9": { "label": "Position 9 Name", "type": "string", "required": true }, "rank9pay": { "label": "Position 9 Pay", "type": "string", "required": true }, "rank10": { "label": "Position 10 Name", "type": "string", "required": true }, "rank10pay": { "label": "Position 10 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 10 positions (Fintech)" } </templatedata> </noinclude> f50939cf4f57810dcf8f3c1c39fd8a3256103b31 Template:Jobinfo4 10 399 608 2022-08-24T19:44:20Z S30Z 2 Created page with "{{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}..." wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "suggested": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "suggested": true } }, "description": "Job page template for jobs with 4 positions (Rift)" } </templatedata> </noinclude> 5804cd64778ec04c7527329fedf307e5042d7295 610 608 2022-08-24T19:46:05Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 4 positions (Rift)" } </templatedata> </noinclude> c950520be2803fbc64736f27abbe217a97e1e810 Template:Jobinfo3 10 400 612 2022-08-24T19:48:46Z S30Z 2 Created page with "{{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}..." wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job-Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 3 positions (Community Service)" } </templatedata> </noinclude> f599c7ba68401a8381e20d1dc3a7311c2d940e3b File:Mr2 front.jpg 6 401 613 2022-08-24T21:03:57Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mr2 rear.jpg 6 402 614 2022-08-24T21:04:17Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sclasscoupe front.jpg 6 403 615 2022-08-24T21:04:52Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sclasscoupe rear.jpg 6 404 616 2022-08-24T21:05:15Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Crz front.jpg 6 405 617 2022-08-24T21:05:42Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Crz rear.jpg 6 406 618 2022-08-24T21:06:01Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C7z06 front.jpg 6 407 619 2022-08-24T21:06:19Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C7z06 rear.jpg 6 408 620 2022-08-24T21:06:40Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350z front.jpg 6 409 621 2022-08-24T21:07:05Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350z rear.jpg 6 410 622 2022-08-24T21:07:20Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Chavy Corvette Z06 0 411 623 2022-08-24T21:16:20Z Cheemsthethird 10 Created page with "{{Carinfo|name=2019 Chavy Corvette Z06|image=c7z06_front.jpg|make=Chavy|type=Coupe|price=$68,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C7)#Z06|rlname=2019 Chevrolet Corvette Z06 (C7)|limited=0|electric=0}} The C7 Corvette is the 7th generation of the iconic Corvette two door high-performance sports car produced by [[Chavy]]. It can be purchased from the dealership for $68,998. == Stats == The Corvette has tw..." wikitext text/x-wiki {{Carinfo|name=2019 Chavy Corvette Z06|image=c7z06_front.jpg|make=Chavy|type=Coupe|price=$68,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C7)#Z06|rlname=2019 Chevrolet Corvette Z06 (C7)|limited=0|electric=0}} The C7 Corvette is the 7th generation of the iconic Corvette two door high-performance sports car produced by [[Chavy]]. It can be purchased from the dealership for $68,998. == Stats == The Corvette has two seats and a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=650|tqval=650|whval=3,523|spdval=185|drv=RWD}}{{Maxstats|hpval=1,184|tqval=804|whval=3,023|spdval=199}} == Gallery == <gallery> File:C7z06 rear.jpg|The rear view of the Corvette Z06. </gallery> 2859c015031aa235fa73a242b118323a5ae64169 Chavy 0 412 624 2022-08-24T21:21:05Z Cheemsthethird 10 Created page with "Chavy is a fictional car manufacture in Southwest Florida. It is based on [https://www.chevrolet.com Chevrolet (Chevy)]. == Vehicles by Chavy == You can find a list of all vehicles by Chavy [[:Category:Chavy|here]]. {{Makeinfo|makename=Chavy|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Chevrolet|rlname=Chevrolet (Chevy)}}" wikitext text/x-wiki Chavy is a fictional car manufacture in Southwest Florida. It is based on [https://www.chevrolet.com Chevrolet (Chevy)]. == Vehicles by Chavy == You can find a list of all vehicles by Chavy [[:Category:Chavy|here]]. {{Makeinfo|makename=Chavy|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Chevrolet|rlname=Chevrolet (Chevy)}} 5a83d3cc87914203df063f2bd79aafbf50b332f2 Category:Chavy 14 413 625 2022-08-24T21:23:58Z Cheemsthethird 10 Created page with "All Chavy vehicles in Southwest Florida." wikitext text/x-wiki All Chavy vehicles in Southwest Florida. 53cf68358aa2f970fedae648c5bc9a44ed7cfc40 Bulatti 0 414 626 2022-08-24T21:30:49Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Bulatti|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Bugatti_Automobiles|rlname=Bugatti Automobiles}} Bulatti is a fictional car manufacture in Southwest Florida. It is based on [https://www.bugatti.com Bugatti]. == Vehicles by Bulatti == You can find all vehicles by Bulatti [[:Category:Bulatti|here]]." wikitext text/x-wiki {{Makeinfo|makename=Bulatti|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Bugatti_Automobiles|rlname=Bugatti Automobiles}} Bulatti is a fictional car manufacture in Southwest Florida. It is based on [https://www.bugatti.com Bugatti]. == Vehicles by Bulatti == You can find all vehicles by Bulatti [[:Category:Bulatti|here]]. 3b2846a37b6d9de497be90eecf1fb365fa5c6a98 Category:Bulatti 14 415 627 2022-08-24T21:31:32Z Cheemsthethird 10 Created page with "All vehicles by Bulatti in Southwest Florida." wikitext text/x-wiki All vehicles by Bulatti in Southwest Florida. 67026ebd8d11ce6f299e5115ec75882510af51c8 Chrystal 0 416 628 2022-08-24T21:36:43Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Chrystal|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Chrysler|rlname=Chrysler}} Chrystal is a fictional car manufacture in Southwest Florida. It is based on [https://www.chrysler.com Chrysler]. == Vehicles by Chrystal == You can find all vehicles made by Chrystal [[:Category:Chrystal|here]]." wikitext text/x-wiki {{Makeinfo|makename=Chrystal|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Chrysler|rlname=Chrysler}} Chrystal is a fictional car manufacture in Southwest Florida. It is based on [https://www.chrysler.com Chrysler]. == Vehicles by Chrystal == You can find all vehicles made by Chrystal [[:Category:Chrystal|here]]. 92085bb3dd21277b52e8a519815f3afa222217bf Category:Chrystal 14 417 629 2022-08-24T21:37:11Z Cheemsthethird 10 Created page with "All vehicles by Chrystal in Southwest Florida." wikitext text/x-wiki All vehicles by Chrystal in Southwest Florida. 97fff4d222eb8c480d5daf222ea504d8985e1a3b CSS 0 418 630 2022-08-24T21:41:18Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=CSS|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/SSC_North_America|rlname=SSC North America}} CSS is a fictional sports car manufacture in Southwest Florida. It is based on [https://www.sscnorthamerica.com SSC]. == Vehicles by CSS == You can find all vehicles made by CSS [[:Category:CSS|here]]." wikitext text/x-wiki {{Makeinfo|makename=CSS|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/SSC_North_America|rlname=SSC North America}} CSS is a fictional sports car manufacture in Southwest Florida. It is based on [https://www.sscnorthamerica.com SSC]. == Vehicles by CSS == You can find all vehicles made by CSS [[:Category:CSS|here]]. b5987683b41be809ca3d9ce6fd6517b19a70c6da Category:CSS 14 419 631 2022-08-24T21:41:47Z Cheemsthethird 10 Created page with "All CSS vehicles in Southwest Florida." wikitext text/x-wiki All CSS vehicles in Southwest Florida. e1624227e3d5fc5c8cf19b26a296c7d794e41309 Bulatti 0 414 632 626 2022-08-24T21:42:49Z Cheemsthethird 10 wikitext text/x-wiki {{Makeinfo|makename=Bulatti|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Bugatti_Automobiles|rlname=Bugatti Automobiles}} Bulatti is a fictional luxury hyper-car manufacture in Southwest Florida. It is based on [https://www.bugatti.com Bugatti]. == Vehicles by Bulatti == You can find all vehicles by Bulatti [[:Category:Bulatti|here]]. 25a89184d9c24851cf94996d87ba58b523e71cd4 Dodje 0 420 633 2022-08-24T21:45:41Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Dodje|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Dodge|rlname=Dodge}} Dodje is a fictional car manufacture in Southwest Florida. It is based on [https://www.dodge.com Dodge]. == Vehicles by Dodje == You can find all vehicles by Dodje [[:Category:Dodje|here]]." wikitext text/x-wiki {{Makeinfo|makename=Dodje|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Dodge|rlname=Dodge}} Dodje is a fictional car manufacture in Southwest Florida. It is based on [https://www.dodge.com Dodge]. == Vehicles by Dodje == You can find all vehicles by Dodje [[:Category:Dodje|here]]. 8c90e95a610e947f558687732c71439a1c8f41a4 Furai 0 421 634 2022-08-24T21:48:58Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Furai|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ferrari|rlname=Ferrari}} Furai is a fictional Italian luxury sports car manufacture in Southwest Florida. It is based on [https://www.ferrari.com/en-US Ferrari]. == Vehicles by Furai == You can find all vehicles made by Furai [[:Category:Furai|here]]." wikitext text/x-wiki {{Makeinfo|makename=Furai|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ferrari|rlname=Ferrari}} Furai is a fictional Italian luxury sports car manufacture in Southwest Florida. It is based on [https://www.ferrari.com/en-US Ferrari]. == Vehicles by Furai == You can find all vehicles made by Furai [[:Category:Furai|here]]. 72a88bbacd2a7bbd3ba2bffbf0f95ac9c0816abc Category:Furai 14 422 635 2022-08-24T21:49:21Z Cheemsthethird 10 Created page with "All Furai vehicles in Southwest Florida." wikitext text/x-wiki All Furai vehicles in Southwest Florida. c41536e86b4c20d890d2ab8063e61acfa36b99d5 GEC 0 423 636 2022-08-24T21:53:30Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=GEC|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/GMC_(automobile)|rlname=GMC}} GEC is a fictional automobile manufacture that focuses mainly on trucks and utility vehicles. It is based on [https://www.gmc.com GMC]. == Vehicles by GEC == You can find all vehicles by GEC here." wikitext text/x-wiki {{Makeinfo|makename=GEC|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/GMC_(automobile)|rlname=GMC}} GEC is a fictional automobile manufacture that focuses mainly on trucks and utility vehicles. It is based on [https://www.gmc.com GMC]. == Vehicles by GEC == You can find all vehicles by GEC here. c36424c86b3d743635bd47fc0258c4f90e5f476b 637 636 2022-08-24T21:53:54Z Cheemsthethird 10 wikitext text/x-wiki {{Makeinfo|makename=GEC|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/GMC_(automobile)|rlname=GMC}} GEC is a fictional automobile manufacture that focuses mainly on trucks and utility vehicles. It is based on [https://www.gmc.com GMC]. == Vehicles by GEC == You can find all vehicles by GEC [[:Category:GEC|here]]. bc04bc0239c862c91763f62783650e4a78a013e3 Category:GEC 14 424 638 2022-08-24T21:54:19Z Cheemsthethird 10 Created page with "All vehicles by GEC in Southwest Florida." wikitext text/x-wiki All vehicles by GEC in Southwest Florida. 9fcb10b5c87cfb5af65467f1158976ba053f9283 Hammer 0 425 639 2022-08-24T21:58:07Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Hammer|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Hummer|rlname=HUMMER}} Hammer is a fictional SUVs and trucks manufacture in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Hummer Hummer]. == Vehicles by Hammer == You can find all vehicles by Hammer [[:Category:Hammer|here]]." wikitext text/x-wiki {{Makeinfo|makename=Hammer|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Hummer|rlname=HUMMER}} Hammer is a fictional SUVs and trucks manufacture in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Hummer Hummer]. == Vehicles by Hammer == You can find all vehicles by Hammer [[:Category:Hammer|here]]. 68a5364d349f340db42c65b0a5fc1ea7a473c681 Category:Hammer 14 426 640 2022-08-24T21:58:27Z Cheemsthethird 10 Created page with "All Hammer vehicles in Southwest Florida." wikitext text/x-wiki All Hammer vehicles in Southwest Florida. a0b80acff8839c6858238551ac25972e6715cc53 2015 Koneggsaga One:1 0 430 644 2022-08-24T22:12:15Z Doggies50 3 Created page with "{{Carinfo|name=2015 Koneggsaga One:1|image=One_to_1_front.png|make=Koneggsaga|type=Hyper|price=7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under Koneggsaga. It was sold as a limited for about 2-3 days for 7,900,000. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1..." wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One_to_1_front.png|make=Koneggsaga|type=Hyper|price=7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under Koneggsaga. It was sold as a limited for about 2-3 days for 7,900,000. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}}<gallery> File:One to 1 rear.png File:One to 1 interior.png </gallery> bedac011fd8fc992a303e62835c3f23be4c22443 684 644 2022-08-24T23:41:23Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One_to_1_front.png|make=Koneggsaga|type=Hyper|price=$7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under Koneggsaga. It was sold as a limited for about 2-3 days for 7,900,000. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}}<gallery> File:One to 1 rear.png File:One to 1 interior.png </gallery> d4b9c23227655668b4db8a73fc2b2898a1346144 File:R32 Rear.jpg 6 431 645 2022-08-24T22:18:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R32 Front.jpg 6 432 646 2022-08-24T22:18:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1992 Naan Skyline R32 GTR 0 433 647 2022-08-24T22:18:46Z S30Z 2 Created page with " {{Carinfo |name=1992 Naan Skyline R32 GTR |image=R32_Front.jpg |make=Naan |type=Classic |price=$68,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_3 |rlname=Nissan Skyline GT-R (R32) |limited=0 |electric=0 }} The 1992 Naan Skyline R32 GTR is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $68,000. ==Stats== The R32 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstat..." wikitext text/x-wiki {{Carinfo |name=1992 Naan Skyline R32 GTR |image=R32_Front.jpg |make=Naan |type=Classic |price=$68,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_3 |rlname=Nissan Skyline GT-R (R32) |limited=0 |electric=0 }} The 1992 Naan Skyline R32 GTR is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $68,000. ==Stats== The R32 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=275|tqval=263|whval=3153|spdval=152|drv=AWD}} {{Maxstats|hpval=951|tqval=786|whval=2807|spdval=197}} ==Gallery== <gallery> File:R32_Rear.jpg|Rear view of the 1992 Naan Skyline R32 GTR. </gallery> b3f44987ed17f45955a323fae906bdf09a89c15c 2022 Bulatti Chiron Super Sport 300+ 0 436 650 2022-08-24T22:29:03Z Doggies50 3 Created page with "{{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.png|make=Bulatti|type=Hyper|price=3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 Bulatti Chiron Super Sport 300+ is the successor to the 2017 Bulatti Chiron with a whopping 300+ mph top speed hence the name "300). This vehicle was a limited car sold for $3,900,000 for about 2 days. == Stats == The..." wikitext text/x-wiki {{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.png|make=Bulatti|type=Hyper|price=3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 Bulatti Chiron Super Sport 300+ is the successor to the 2017 Bulatti Chiron with a whopping 300+ mph top speed hence the name "300). This vehicle was a limited car sold for $3,900,000 for about 2 days. == Stats == The Bulatti Chiron SS 300+ has 2 seats and a 26 gallon fuel capacity. {{Stockstats|hpval=1180|tqval=1180|whval=4361|spdval=315|drv=AWD}}{{Maxstats|hpval=2073|tqval=1296|whval=3858|spdval=315}}<gallery> File:300+ rear.png </gallery> 4dbe4640a30b3408d4a4fb7850504b1bb12efb64 679 650 2022-08-24T23:40:25Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.png|make=Bulatti|type=Hyper|price=$3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 Bulatti Chiron Super Sport 300+ is the successor to the 2017 Bulatti Chiron with a whopping 300+ mph top speed hence the name "300). This vehicle was a limited car sold for $3,900,000 for about 2 days. == Stats == The Bulatti Chiron SS 300+ has 2 seats and a 26 gallon fuel capacity. {{Stockstats|hpval=1180|tqval=1180|whval=4361|spdval=315|drv=AWD}}{{Maxstats|hpval=2073|tqval=1296|whval=3858|spdval=315}}<gallery> File:300+ rear.png </gallery> 5586ec10a26026743bb7725d516e848b30519812 File:A80 Front.jpg 6 439 653 2022-08-24T22:34:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A80 Rear.jpg 6 440 654 2022-08-24T22:34:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2000 Toyoto Supra 0 441 655 2022-08-24T22:34:37Z S30Z 2 Created page with " {{Carinfo |name=2000 Toyoto Supra |image=A80_Front.jpg |make=Toyoto |type=Classic |price=$25,200 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Supra#Fourth_generation_(A80;_1993) |rlname=Toyota Supra (4th gen.) |limited=0 |electric=0 }} The 2000 Toyoto Supra is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $25,200. ==Stats== The Supra has 2 seats and a fuel capacity of 15 gallons. {{Stoc..." wikitext text/x-wiki {{Carinfo |name=2000 Toyoto Supra |image=A80_Front.jpg |make=Toyoto |type=Classic |price=$25,200 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Supra#Fourth_generation_(A80;_1993) |rlname=Toyota Supra (4th gen.) |limited=0 |electric=0 }} The 2000 Toyoto Supra is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $25,200. ==Stats== The Supra has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=329|tqval=464|whval=3450|spdval=147|drv=RWD}} {{Maxstats|hpval=1186|tqval=1187|whval=2950|spdval=199}} ==Gallery== <gallery> File:A80_Rear.jpg|Rear view of the 2000 Toyoto Supra. </gallery> b77bc42f5cd978784008d5afbe1cc0d543e25d32 2022 Atone-Mira Valkyrie 0 442 656 2022-08-24T22:40:21Z Doggies50 3 Created page with "{{Carinfo|name=2022 Atone Mira Valkyrie|image=Valkrie front.png|make=Atone|type=Hyper|price=3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone Mira Valkyrie is a hyper car under Atone. This extreme track oriented vehicle was limitedly available with a price of $3,000,000. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|t..." wikitext text/x-wiki {{Carinfo|name=2022 Atone Mira Valkyrie|image=Valkrie front.png|make=Atone|type=Hyper|price=3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone Mira Valkyrie is a hyper car under Atone. This extreme track oriented vehicle was limitedly available with a price of $3,000,000. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=215|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=215}}<gallery> File:Valkrie rear.png </gallery> cd6f71eae1a2ca718ded786909531fc1461fa0f8 657 656 2022-08-24T22:41:21Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2022 Atone Mira Valkyrie|image=Valkrie front.png|make=Atone|type=Hyper|price=3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone Mira Valkyrie is a hyper car under Atone. This extreme track oriented vehicle was limitedly available with a price of $3,000,000. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}}<gallery> File:Valkrie rear.png </gallery> d35435ee5aaa3aab8554adbf2e839a2c11cfddfc 678 657 2022-08-24T23:39:36Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2022 Atone Mira Valkyrie|image=Valkrie front.png|make=Atone|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone Mira Valkyrie is a hyper car under Atone. This extreme track oriented vehicle was limitedly available with a price of $3,000,000. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}}<gallery> File:Valkrie rear.png </gallery> f648e3ad4fd34995ff28127206ee81a6cf5cb4c9 2021 Ethanol Venom F5 0 445 660 2022-08-24T22:54:02Z Doggies50 3 Created page with "{{Carinfo|name=2021 Ethanol Venom F5|image=F5 front.png|make=Ethanol|type=Hyper|price=2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by Ethanol. The car was sold as a limited for $2,100,000 in game. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{M..." wikitext text/x-wiki {{Carinfo|name=2021 Ethanol Venom F5|image=F5 front.png|make=Ethanol|type=Hyper|price=2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by Ethanol. The car was sold as a limited for $2,100,000 in game. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{Maxstats|hpval=2314|tqval=1316|whval=2553|spdval=329}}<gallery> File:F5 rear.png </gallery> 9896fed9d32e904ffecc4587492563300ef7167f 680 660 2022-08-24T23:40:33Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2021 Ethanol Venom F5|image=F5 front.png|make=Ethanol|type=Hyper|price=$2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by Ethanol. The car was sold as a limited for $2,100,000 in game. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{Maxstats|hpval=2314|tqval=1316|whval=2553|spdval=329}}<gallery> File:F5 rear.png </gallery> cc9d933c6bf5dd3d0b91d2b35dacd63b5b1deddb File:Pantera Rear.jpg 6 449 664 2022-08-24T22:59:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pantera Front.jpg 6 450 665 2022-08-24T23:00:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1987 DeTomato Pantera GT5-S 0 451 666 2022-08-24T23:01:18Z S30Z 2 Created page with " {{Carinfo |name=1987 DeTomato Pantera GT5-S |image=Pantera_Front.jpg |make=DeTomato |type=Classic |price=$239,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/De_Tomaso_Pantera |rlname=De Tomaso Pantera GT5-S |limited=0 |electric=0 }} The 1987 DeTomato Pantera GT5-S is a two door coupe produced by [[DeTomato]]. It can be purchased from the dealership for $239,000. ==Stats== The Pantera has 2 seats and a fuel capacity of 20 gallons...." wikitext text/x-wiki {{Carinfo |name=1987 DeTomato Pantera GT5-S |image=Pantera_Front.jpg |make=DeTomato |type=Classic |price=$239,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/De_Tomaso_Pantera |rlname=De Tomaso Pantera GT5-S |limited=0 |electric=0 }} The 1987 DeTomato Pantera GT5-S is a two door coupe produced by [[DeTomato]]. It can be purchased from the dealership for $239,000. ==Stats== The Pantera has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=345|tqval=333|whval=3219|spdval=166|drv=RWD}} {{Maxstats|hpval=1281|tqval=1018|whval=2719|spdval=167}} ==Gallery== <gallery> File:Pantera_Rear.jpg|Rear view of the 1987 DeTomato Pantera GT5-S. </gallery> ebd3d6340957a7d782b03e5554011b5a9ee43bd6 2009 Lamburghina Reventon Roadster 0 452 667 2022-08-24T23:06:44Z Doggies50 3 Created page with "{{Carinfo|name=2009 Lamburghina Revention Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Revention Roadster|limited=1|electric=0}} The 2009 Lamburghina Revention Roadster is a super car built by Lamburghina. This roadster was limited and sold for $1,400,000. == Stats == The Revention Roadster has 2 seats and a fuel capacity of 22 gallons. {{St..." wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Revention Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Revention Roadster|limited=1|electric=0}} The 2009 Lamburghina Revention Roadster is a super car built by Lamburghina. This roadster was limited and sold for $1,400,000. == Stats == The Revention Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}}{{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}}<gallery> File:Revention rear.png File:Revention interior.png </gallery> cc899f1e3285123005b49ce930ec4b214cb74a72 685 667 2022-08-24T23:41:36Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Revention Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Revention Roadster|limited=1|electric=0}} The 2009 Lamburghina Revention Roadster is a super car built by Lamburghina. This roadster was limited and sold for $1,400,000. == Stats == The Revention Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}}{{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}}<gallery> File:Revention rear.png File:Revention interior.png </gallery> 96d184e9975b4d264fca948fb16f051a351c8c79 2022 Lamburghina Countach 0 455 670 2022-08-24T23:17:23Z Doggies50 3 Created page with "{{Carinfo|name=2022 Lamburghina Countach|image=Lpi 800-4 front.png|make=Lamburghina|type=Super|price=2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made my Lamburghina which was sold as a limited for $2,640,000. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|..." wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=Lpi 800-4 front.png|make=Lamburghina|type=Super|price=2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made my Lamburghina which was sold as a limited for $2,640,000. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}}<gallery> File:Lpi 800-4 rear.png </gallery> 9c4d86497c3eccc87efa637888c4d4b5df566691 682 670 2022-08-24T23:41:00Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=Lpi 800-4 front.png|make=Lamburghina|type=Super|price=$2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made my Lamburghina which was sold as a limited for $2,640,000. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}}<gallery> File:Lpi 800-4 rear.png </gallery> 6def8a75a882ef969398f3ec110d27484d0e9826 File:Nova Front.jpg 6 458 673 2022-08-24T23:27:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Nova Rear.jpg 6 459 675 2022-08-24T23:27:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1970 Chavy Nova SS 0 460 676 2022-08-24T23:27:47Z S30Z 2 Created page with " {{Carinfo |name=1970 Chavy Nova SS |image=Nova_Front.jpg |make=Chavy |type=Classic |price=$38,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Chevy_II_/_Nova#Nova_SS |rlname=Chevrolet Nova SS |limited=0 |electric=0 }} The 1970 Chavy Nova SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $38,000. ==Stats== The Nova SS has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpva..." wikitext text/x-wiki {{Carinfo |name=1970 Chavy Nova SS |image=Nova_Front.jpg |make=Chavy |type=Classic |price=$38,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Chevy_II_/_Nova#Nova_SS |rlname=Chevrolet Nova SS |limited=0 |electric=0 }} The 1970 Chavy Nova SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $38,000. ==Stats== The Nova SS has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=375|tqval=380|whval=3505|spdval=134|drv=RWD}} {{Maxstats|hpval=1325|tqval=1130|whval=3005|spdval=134}} ==Gallery== <gallery> File:Nova_Rear.jpg|Rear view of the 1970 Chavy Nova SS. </gallery> 42140ed216af8f53ef2dbe631464ea49a8043fe4 2020 Lamburghina Huracan STO 0 461 677 2022-08-24T23:30:37Z Doggies50 3 Created page with "{{Carinfo|name=2020 Lamburghina Huracan STO|image=Sto front.png|make=Lamburghina|type=Super|price=327,838|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n|rlname=Lamborghini Huracan STO|limited=1|electric=0}} The 2020 Lamburghina Huracan STO was a limited made from Lamburghina for $327,838. == Stats == The STO has 2 seats and a fuel capacity of 20.9 gallons. {{Stockstats|hpval=630|tqval=473|whval=3172|spdval=208|drv=RWD}}{{Maxstats|hpval=1336..." wikitext text/x-wiki {{Carinfo|name=2020 Lamburghina Huracan STO|image=Sto front.png|make=Lamburghina|type=Super|price=327,838|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n|rlname=Lamborghini Huracan STO|limited=1|electric=0}} The 2020 Lamburghina Huracan STO was a limited made from Lamburghina for $327,838. == Stats == The STO has 2 seats and a fuel capacity of 20.9 gallons. {{Stockstats|hpval=630|tqval=473|whval=3172|spdval=208|drv=RWD}}{{Maxstats|hpval=1336|tqval=1284|whval=2672|spdval=208}}<gallery> File:Sto rear.png </gallery> e323091ed409eb1247750e186f30f2a72e603b45 681 677 2022-08-24T23:40:52Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2020 Lamburghina Huracan STO|image=Sto front.png|make=Lamburghina|type=Super|price=$327,838|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n|rlname=Lamborghini Huracan STO|limited=1|electric=0}} The 2020 Lamburghina Huracan STO was a limited made from Lamburghina for $327,838. == Stats == The STO has 2 seats and a fuel capacity of 20.9 gallons. {{Stockstats|hpval=630|tqval=473|whval=3172|spdval=208|drv=RWD}}{{Maxstats|hpval=1336|tqval=1284|whval=2672|spdval=208}}<gallery> File:Sto rear.png </gallery> ac3dde5658d22555d87a7f6aafcaf8e28209ac5d 2020 McFaren Speedtail 0 305 683 480 2022-08-24T23:41:09Z Doggies50 3 wikitext text/x-wiki {{Carinfo|name=2020 McFaren Speedtail|image=Mcfaren speedtail front.png|make=McFaren|type=Hyper|price=$2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 Mcfaren Speedtail is a Limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. == Stats == The McFaren Speedtail has 3 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1036|tqval=848|whval=3153|spdval=250|drv=RWD}}{{Maxstats|hpval=1722|tqval=1516|whval=2653|spdval=255}} == Gallery == <gallery> File:Mcfaren speedtail rear.png </gallery> d3e8dddff4823dc8e5c19999394fedc6b87a2835 File:69Camaro Rear.jpg 6 462 686 2022-08-24T23:42:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:69Camaro Front.jpg 6 463 687 2022-08-24T23:42:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1969 Chavy Camaro RS/SS 0 464 688 2022-08-24T23:42:58Z S30Z 2 Created page with " {{Carinfo |name=1969 Chavy Camaro RS/SS |image=69Camaro_Front.jpg |make=Chavy |type=Classic |price=$55,800 |avail=Can be purchased at the dealership |rllink=Chevrolet Camaro RS/SS (1st gen.) |rlname=Chevrolet Nova SS |limited=0 |electric=0 }} The 1969 Chavy Camaro RS/SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $55,800. ==Stats== The Camaro RS/SS has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=325|tqval..." wikitext text/x-wiki {{Carinfo |name=1969 Chavy Camaro RS/SS |image=69Camaro_Front.jpg |make=Chavy |type=Classic |price=$55,800 |avail=Can be purchased at the dealership |rllink=Chevrolet Camaro RS/SS (1st gen.) |rlname=Chevrolet Nova SS |limited=0 |electric=0 }} The 1969 Chavy Camaro RS/SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $55,800. ==Stats== The Camaro RS/SS has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=325|tqval=410|whval=3642|spdval=138|drv=RWD}} {{Maxstats|hpval=1251|tqval=1227|whval=3142|spdval=138}} ==Gallery== <gallery> File:69Camaro_Rear.jpg|Rear view of the 1969 Chavy Camaro RS/SS. </gallery> cb5aef217a9b7c31314d6908ca53ff2a1864781d 2010 Dodje Viper SRT-10 ACR-X 0 173 689 313 2022-08-24T23:43:38Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2010 Dodje Viper SRT-10 ACR-X |image=Viper_ACR-X_Front.jpg |make=Dodje |type=Super |price=$110,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR-X |rlname=Dodge Viper SRT-10 ACR-X |limited=1 |electric=0 }} The 2010 Dodje Viper SRT-10 ACR-X is a two door supercar produced by [[Dodje]]. It is a limited vehicle that was added on June 11, 2022. It was available for 24 hours and can no longer be purchased. ==Stats== The Viper SRT-10 ACR-X has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=640|tqval=585|whval=3190|spdval=190|drv=RWD}} {{Maxstats|hpval=1349|tqval=927|whval=2690|spdval=225}} ==Gallery== <gallery> File:Viper_ACR-X_Rear.jpg|Rear view of the 2010 Dodje Viper SRT-10 ACR-X. </gallery> c063afcf5b6639bc2fba22b9fccbbe2c575b553f 1963 Furai 250 GTO 0 465 690 2022-08-24T23:44:46Z HPtheamazing 9 Created page with "{{Carinfo|name=1963 Furai 250 GTO|image=250GTO Front|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}}" wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO Front|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} f8b8451a37aded60c6ec08969b146456e629953e 691 690 2022-08-24T23:48:13Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=GTO front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} 6ff066720796eb3640830b7a6ab86529d57c7a9b 692 691 2022-08-24T23:50:21Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=GTO_front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} 02c9a14eeb7a1262d6cf3cb70f4a4eeed070766c 694 692 2022-08-25T00:00:14Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} f1ce0418b0e9fc56df15568cbff44ccd81687841 695 694 2022-08-25T00:10:39Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The Furai 250 GTO was introduced in the tuning update and is currently the game's most expensive car. The car was available for 1 day at a price of around 48,400,000. ea1c057f6d122a3622361fe7b66c3d08a75a3ba5 2018 Dodje Challenger Demon 0 329 696 534 2022-08-25T00:12:45Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.png|make=Dodje|type=Coupe|price=$86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} The 2018 Dodje Challenger Demon is a 2-door American muscle car produced by [[Dodje]], and can be purchased from the dealership for $86,390. == Stats == The Demon has 4 seats and a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=840|tqval=717|whval=4,280|spdval=202|drv=RWD}}{{Maxstats|hpval=1,423|tqval=1,540|whval=3,780|spdval=207}} == Gallery == [[File:Demon back.png|left|thumb|Rear visual of the 2018 Dodje Challenger Demon]] ed3d408a6a24d63081b24f2a92ab23ea7a39700e 1963 Furai 250 GTO 0 465 697 695 2022-08-25T00:14:03Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car. The car was available for 1 day at a price of around 48,400,000. f0e58fbb7660c5fd0ccf0055dffdf885951b126b 699 697 2022-08-25T00:33:04Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car. The car was available for 1 day at a price of around 48,400,000. {{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == b6e05adfc36883b79d6d85c8ca243b8334fc7b8e 700 699 2022-08-25T00:34:05Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car. The car was available for 1 day at a price of around 48,400,000. {{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 6beae1b781bf0564719b2d7fc6ff1ed65a9cc687 701 700 2022-08-25T00:36:22Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car. The car was available for 1 day at a price of around $48,400,000. {{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] c9bde64aecc23772a5dc39808fb1c6abc1bb9979 706 701 2022-08-25T00:39:36Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[McFaren F1]], now the games 2nd most expensive vehicle, by $26,000,000. The car was available for 1 day at a price of around $48,400,000. {{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] cb6709ad8adb2700f1c40c8388cc3a90e450cec2 707 706 2022-08-25T00:42:52Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[McFaren F1]], now the games 2nd most expensive vehicle, by $26,000,000. The car was available for 1 day at a price of around $48,400,000. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] cfa69e7cc117f310aa0a544ed7b5bd34543258c0 708 707 2022-08-25T00:43:28Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[McFaren F1]], now the games second most expensive vehicle, by $26,000,000. The car was available for 1 day at a price of around $48,400,000. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 034c70ba488e11a97225a2da0f52bd147ed79b0c 712 708 2022-08-25T00:58:48Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] fe723bf3002b73720184b6f13598291b9c74a21a 713 712 2022-08-25T01:00:06Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 54035d34500a8267b531cde62308067265830c29 714 713 2022-08-25T01:01:17Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 552d1d419e57f89481bed73f9320dc928c25c21f 1993 Fard Mustang GT LX 0 468 702 2022-08-25T00:37:43Z S30Z 2 Created page with " {{Carinfo |name=1993 Fard Mustang GT LX |image=Foxbody_Front.jpg |make=Fard |type=Classic |price=$18,997 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(third_generation)#1987%E2%80%931993 |rlname=Ford Mustang GT (3rd gen.) |limited=0 |electric=0 }} The 1993 Fard Mustang GT LX is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $18,997. ==Stats== The Mustang GT LX has 4 seats and a fuel c..." wikitext text/x-wiki {{Carinfo |name=1993 Fard Mustang GT LX |image=Foxbody_Front.jpg |make=Fard |type=Classic |price=$18,997 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(third_generation)#1987%E2%80%931993 |rlname=Ford Mustang GT (3rd gen.) |limited=0 |electric=0 }} The 1993 Fard Mustang GT LX is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $18,997. ==Stats== The Mustang GT LX has 4 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=205|tqval=275|whval=3095|spdval=130|drv=RWD}} {{Maxstats|hpval=825|tqval=845|whval=2595|spdval=168}} ==Gallery== <gallery> File:Foxbody_Rear.jpg|Rear view of the 1993 Fard Mustang GT LX. </gallery> 0871b7623d155017d3297e10ed24a32132bf7b5b 1969 Chavy Camaro RS/SS 0 464 703 688 2022-08-25T00:38:15Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1969 Chavy Camaro RS/SS |image=69Camaro_Front.jpg |make=Chavy |type=Classic |price=$55,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(first_generation) |rlname=Chevrolet Camaro RS/SS (1st gen.) |limited=0 |electric=0 }} The 1969 Chavy Camaro RS/SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $55,800. ==Stats== The Camaro RS/SS has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=325|tqval=410|whval=3642|spdval=138|drv=RWD}} {{Maxstats|hpval=1251|tqval=1227|whval=3142|spdval=138}} ==Gallery== <gallery> File:69Camaro_Rear.jpg|Rear view of the 1969 Chavy Camaro RS/SS. </gallery> d85b37afde86fedea58cc174a7818b65145e6b75 File:Foxbody Rear.jpg 6 469 704 2022-08-25T00:39:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Foxbody Front.jpg 6 470 705 2022-08-25T00:39:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DC2 Front.jpg 6 471 709 2022-08-25T00:53:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DC2 Rear.jpg 6 472 710 2022-08-25T00:54:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1998 Axura Integra Type R 0 473 711 2022-08-25T00:55:42Z S30Z 2 Created page with " {{Carinfo |name=1998 Axura Integra Type R |image=DC2_Front.jpg |make=Axura |type=Classic |price=$28,293 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Integra#Integra_Type_R |rlname=Acura Integra Type R |limited=0 |electric=0 }} The 1998 Axura Integra Type R is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $28,293. ==Stats== The Integra Type R has 4 seats and a fuel capacity of 13 gallons. {..." wikitext text/x-wiki {{Carinfo |name=1998 Axura Integra Type R |image=DC2_Front.jpg |make=Axura |type=Classic |price=$28,293 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Integra#Integra_Type_R |rlname=Acura Integra Type R |limited=0 |electric=0 }} The 1998 Axura Integra Type R is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $28,293. ==Stats== The Integra Type R has 4 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=195|tqval=130|whval=2579|spdval=135|drv=FWD}} {{Maxstats|hpval=1028|tqval=866|whval=2079|spdval=166}} ==Gallery== <gallery> File:DC2_Rear.jpg|Rear view of the 1998 Axura Integra Type R. </gallery> ab73fb5e4bdc1ec73ca74e899ebd642ca6240c33 715 711 2022-08-25T01:13:00Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1998 Axura Integra Type R |image=DC2_Front.jpg |make=Axura |type=Classic |price=$28,293 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Integra#Integra_Type_R |rlname=Acura Integra Type R |limited=0 |electric=0 }} The 1998 Axura Integra Type R is a two door coupe produced by [[Axura]]. It can be purchased from the dealership for $28,293. ==Stats== The Integra Type R has 4 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=195|tqval=130|whval=2579|spdval=135|drv=FWD}} {{Maxstats|hpval=1028|tqval=866|whval=2079|spdval=166}} ==Gallery== <gallery> File:DC2_Rear.jpg|Rear view of the 1998 Axura Integra Type R. </gallery> de0044085e2d0689917705720b8d0b6baf3b2f84 2022 Lamburghina Countach 0 455 716 682 2022-08-25T02:26:48Z Cheemsthethird 10 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=Lpi 800-4 front.png|make=Lamburghina|type=Super|price=$2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made by Lamburghina which was sold as a limited for $2,640,000. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}}<gallery> File:Lpi 800-4 rear.png </gallery> e303d711eb3bfd10dd986ec661f6706a074f9563 Hayunai 0 474 717 2022-08-25T02:30:38Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Hayunai|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Hyundai_Motor_Company|rlname=Hyundai Motor Company}} Hayuanai is a fictional Korean automobile manufacture in Southwest Florida. It is based on [https://www.hyundai.com/worldwide/en/ Hyundai]. == Vehicles by Hayunai == You can find all vehicles made by Hayunai [[:Category:Hayunai|here]]." wikitext text/x-wiki {{Makeinfo|makename=Hayunai|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Hyundai_Motor_Company|rlname=Hyundai Motor Company}} Hayuanai is a fictional Korean automobile manufacture in Southwest Florida. It is based on [https://www.hyundai.com/worldwide/en/ Hyundai]. == Vehicles by Hayunai == You can find all vehicles made by Hayunai [[:Category:Hayunai|here]]. e5c5d630d1012728514789530ed7d936ce2f7026 Category:Hayunai 14 475 718 2022-08-25T02:31:00Z Cheemsthethird 10 Created page with "All vehicles made by Hayunai in Southwest Florida." wikitext text/x-wiki All vehicles made by Hayunai in Southwest Florida. e0164e508b4a66c9395af7a0fef3fcadb9a43cbf Intercontinental 0 476 719 2022-08-25T02:36:19Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Intercontinental|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Navistar_International|rlname=Navistar International}} Intercontinental is a fictional automobile manufacture that specializes in trucks in Southwest Florida. It is based on [https://www.internationaltrucks.com/en International]. == Vehicles by Intercontinental == You can find all vehicles by Intercontinental [[:Category:Intercontinental|here]]." wikitext text/x-wiki {{Makeinfo|makename=Intercontinental|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Navistar_International|rlname=Navistar International}} Intercontinental is a fictional automobile manufacture that specializes in trucks in Southwest Florida. It is based on [https://www.internationaltrucks.com/en International]. == Vehicles by Intercontinental == You can find all vehicles by Intercontinental [[:Category:Intercontinental|here]]. 27cefe248e2dc0ccc379b05a9890742e18972f09 Category:Intercontinental 14 477 720 2022-08-25T02:37:24Z Cheemsthethird 10 Created page with "All Intercontinental vehicles in Southwest Florida." wikitext text/x-wiki All Intercontinental vehicles in Southwest Florida. cc57ea24819ace698737d1a8981e251c08ffa4f8 Jeff 0 478 721 2022-08-25T02:43:14Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Jeff|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Jeep|rlname=Jeep}} Jeff is a fictional automobile manufacture that specializes in SUVs and trucks in Southwest Florida. It is based on [https://www.jeep.com Jeep]. == Vehicles by Jeff == You can find a list of all vehicles made by Jeff [[:Category:Jeff|here]]." wikitext text/x-wiki {{Makeinfo|makename=Jeff|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Jeep|rlname=Jeep}} Jeff is a fictional automobile manufacture that specializes in SUVs and trucks in Southwest Florida. It is based on [https://www.jeep.com Jeep]. == Vehicles by Jeff == You can find a list of all vehicles made by Jeff [[:Category:Jeff|here]]. 0cd162d94d7788383a6889705ace8518bca01e72 Category:Jeff 14 479 722 2022-08-25T02:43:30Z Cheemsthethird 10 Created page with "All Jeff vehicles in Southwest Florida." wikitext text/x-wiki All Jeff vehicles in Southwest Florida. b30936dd9defb1ba9937a3e873c4a435fef119cc Koneggsaga 0 480 723 2022-08-25T02:46:58Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Koneggsaga|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Koenigsegg|rlname=Koenigsegg Automotive AB}} Koneggsaga is a fictional Swedish hyper-car manufacture in Southwest Florida. It is based on [https://www.koenigsegg.com Koenigsegg]. == Vehicles by Koneggsaga == You can find a list of all vehicles by Koneggsaga [[:Category:Koneggsaga|here]]." wikitext text/x-wiki {{Makeinfo|makename=Koneggsaga|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Koenigsegg|rlname=Koenigsegg Automotive AB}} Koneggsaga is a fictional Swedish hyper-car manufacture in Southwest Florida. It is based on [https://www.koenigsegg.com Koenigsegg]. == Vehicles by Koneggsaga == You can find a list of all vehicles by Koneggsaga [[:Category:Koneggsaga|here]]. bf628c2deac1af42d3103b613eb2ec51be537523 Category:Koneggsaga 14 481 724 2022-08-25T02:47:30Z Cheemsthethird 10 Created page with "All Koneggsaga vehicles in Southwest Florida." wikitext text/x-wiki All Koneggsaga vehicles in Southwest Florida. 397e185d9c3778f3fc208e88f4ca102f4f953d3e 2009 Lamburghina Reventon Roadster 0 452 725 685 2022-08-25T02:50:22Z Cheemsthethird 10 wikitext text/x-wiki {{DISPLAYTITLE:2009 Lamburghina Reventon Roadster}} {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Revention Roadster|limited=1|electric=0}} The 2009 Lamburghina Revention Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} <gallery> File:Revention rear.png|The rear view of the Reventon. File:Revention interior.png|Interior shot of the Reventon. </gallery> {{DEFAULTSORT:2009_Lamburghina_Reventon_Roadster}} e215ac8a3602d4882b03c8a42add8777be1be2cd 726 725 2022-08-25T02:51:01Z Cheemsthethird 10 wikitext text/x-wiki {{DISPLAYTITLE:2009 Lamburghina Reventon Roadster}} {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Revention Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} <gallery> File:Revention rear.png|The rear view of the Reventon. File:Revention interior.png|Interior shot of the Reventon. </gallery> {{DEFAULTSORT:2009_Lamburghina_Reventon_Roadster}} 6d4c75635526d33bbbc26e8d6967cbe5bbb1dd93 727 726 2022-08-25T02:53:15Z Cheemsthethird 10 wikitext text/x-wiki {{DISPLAYTITLE:2009 Lamburghina Reventon Roadster}} {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Reventon Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} <gallery> File:Revention rear.png|The rear view of the Reventon. File:Revention interior.png|Interior shot of the Reventon. </gallery> {{DEFAULTSORT:2009_Lamburghina_Reventon_Roadster}} 82a3e149f58a6cb427e76a4cca6980fb222aefb4 728 727 2022-08-25T02:54:11Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Reventon Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} <gallery> File:Revention rear.png|The rear view of the Reventon. File:Revention interior.png|Interior shot of the Reventon. </gallery> 2991a1386a887e56b59ed19169ef701c805e82f8 Lamburghina 0 482 729 2022-08-25T02:56:07Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Lamburghina|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lamborghini|rlname=Automobili Lamborghini S.p.A}} Lamburghina is a fictional Italian luxury sports-cars manufacture in Southwest Florida. It is based on [https://www.lamborghini.com/en-en Lamborghini]. == Vehicles by Lamburghina == You can find a list of all vehicles by Lamburghina [[:Category:Lamburghina|here]]." wikitext text/x-wiki {{Makeinfo|makename=Lamburghina|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lamborghini|rlname=Automobili Lamborghini S.p.A}} Lamburghina is a fictional Italian luxury sports-cars manufacture in Southwest Florida. It is based on [https://www.lamborghini.com/en-en Lamborghini]. == Vehicles by Lamburghina == You can find a list of all vehicles by Lamburghina [[:Category:Lamburghina|here]]. 20c554184dbe2a7685e9b492ff7b4380cb4f103f Category:Lamburghina 14 483 730 2022-08-25T02:56:51Z Cheemsthethird 10 Created page with "All Lamburghina vehicles in Southwest Florida." wikitext text/x-wiki All Lamburghina vehicles in Southwest Florida. 64f80bbe0f7dca243a92a6f69855612dd58bef32 Mazeri 0 484 731 2022-08-25T03:00:03Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Mazeri|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Maserati|rlname=Maserati S.p.A.}} Mazeri is a fictional Italian luxury car manufacture in Southwest Florida. It is based on [https://www.maserati.com/us/en?redirect=1 Maserati]. == Vehicles by Mazeri == You can find all vehicles by Mazeri [[:Category:Mazeri|here]]." wikitext text/x-wiki {{Makeinfo|makename=Mazeri|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Maserati|rlname=Maserati S.p.A.}} Mazeri is a fictional Italian luxury car manufacture in Southwest Florida. It is based on [https://www.maserati.com/us/en?redirect=1 Maserati]. == Vehicles by Mazeri == You can find all vehicles by Mazeri [[:Category:Mazeri|here]]. 579a41d867713b679ada49479f40a9125d3f9f60 Category:Mazeri 14 485 732 2022-08-25T03:00:50Z Cheemsthethird 10 Created page with "All Mazeri vehicles in Southwest Florida." wikitext text/x-wiki All Mazeri vehicles in Southwest Florida. 81f679d945fe8b7d6f59e0090a54df861b0dac97 Naan 0 486 733 2022-08-25T03:04:21Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Naan|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Nissan|rlname=Nissan Motor Co., Ltd.}} Naan is a fictional Japanese automobile manufacture in Southwest Florida. It is based on [https://www.nissanusa.com Nissan]. == Vehicles by Naan == You can find all vehicles made by Naan [[:Category:Naan|here]]." wikitext text/x-wiki {{Makeinfo|makename=Naan|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Nissan|rlname=Nissan Motor Co., Ltd.}} Naan is a fictional Japanese automobile manufacture in Southwest Florida. It is based on [https://www.nissanusa.com Nissan]. == Vehicles by Naan == You can find all vehicles made by Naan [[:Category:Naan|here]]. 74f06adf0690148e79bbae6a5458e44937b7e07e Category:Naan 14 487 734 2022-08-25T03:04:45Z Cheemsthethird 10 Created page with "All Naan vehicles in Southwest Florida." wikitext text/x-wiki All Naan vehicles in Southwest Florida. 894b58234daf83cbed19f817f8c2a63cf9c3c087 Paijani 0 488 735 2022-08-25T03:07:52Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Paijani|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Pagani_(company)|rlname=Pagani Automobili S.p.A.}} Paijani is a fictional Italian luxury sports-cars manufacture in Southwest Florida. It is based on [https://www.pagani.com Pagani]. == Vehicles by Paijani == You can find all vehicles by Paijani [[:Category:Paijani|here]]." wikitext text/x-wiki {{Makeinfo|makename=Paijani|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Pagani_(company)|rlname=Pagani Automobili S.p.A.}} Paijani is a fictional Italian luxury sports-cars manufacture in Southwest Florida. It is based on [https://www.pagani.com Pagani]. == Vehicles by Paijani == You can find all vehicles by Paijani [[:Category:Paijani|here]]. 7f4f00ca5c30d1f15aea63d8a758f38e9f0330e9 Category:Paijani 14 489 736 2022-08-25T03:08:17Z Cheemsthethird 10 Created page with "All Paijani vehicles in Southwest Florida." wikitext text/x-wiki All Paijani vehicles in Southwest Florida. 3fafa4515a87f4248449d4f7f2b9c1038d0bd3a7 Stuphen 0 492 739 2022-08-25T03:18:20Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Stuphen|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Sutphen|rlname=Sutphen}} Stuphen is a fictional emergency vehicles manufacture in Southwest Florida. It is based on Sutphen. == Vehicles by Stuphen == You can find all vehicles by Stuphen [[:Category:Stuphen|here]]." wikitext text/x-wiki {{Makeinfo|makename=Stuphen|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Sutphen|rlname=Sutphen}} Stuphen is a fictional emergency vehicles manufacture in Southwest Florida. It is based on Sutphen. == Vehicles by Stuphen == You can find all vehicles by Stuphen [[:Category:Stuphen|here]]. 52b5432f676031e3f94811f321dc29f5a30f63be 741 739 2022-08-25T03:19:11Z Cheemsthethird 10 wikitext text/x-wiki {{Makeinfo|makename=Stuphen|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Sutphen|rlname=Sutphen}} Stuphen is a fictional emergency vehicles manufacture in Southwest Florida. It is based on [https://www.sutphen.com Sutphen]. == Vehicles by Stuphen == You can find all vehicles by Stuphen [[:Category:Stuphen|here]]. 469cb60d6014383bd6867bc6e42db63c8bcb3bb1 Category:Stuphen 14 493 740 2022-08-25T03:18:44Z Cheemsthethird 10 Created page with "All Stuphen vehicles in Southwest Florida." wikitext text/x-wiki All Stuphen vehicles in Southwest Florida. 9e185d3da37673f00c136946e47cfe0236072a91 Volkinsen 0 494 742 2022-08-25T03:21:36Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Volkinsen|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Volkswagen|rlname=Volkswagen}} Volkinsen is a fictional German automobile manufacture in Southwest Florida. It is based on [https://www.vw.com/en.html Volkswagen]. == Vehicles by Volkinsen == You can find all vehicles by Volkinsen [[:Category:Volkinsen|here]]." wikitext text/x-wiki {{Makeinfo|makename=Volkinsen|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Volkswagen|rlname=Volkswagen}} Volkinsen is a fictional German automobile manufacture in Southwest Florida. It is based on [https://www.vw.com/en.html Volkswagen]. == Vehicles by Volkinsen == You can find all vehicles by Volkinsen [[:Category:Volkinsen|here]]. e9d0cdc8a57e07553d718aa2bb364795781fadf8 Category:Volkinsen 14 495 743 2022-08-25T03:21:55Z Cheemsthethird 10 Created page with "All Volkinsen vehicles in Southwest Florida." wikitext text/x-wiki All Volkinsen vehicles in Southwest Florida. be2874e74be0f71b36da851806fdd41eec5717eb Vovol 0 496 744 2022-08-25T03:25:11Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Vovol|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Volvo_Cars|rlname=Volvo Car Corporation}} Vovol is a fictional Swedish automobile manufacture in Southwest Florida. It is based on [https://www.volvo.com/en/ Volvo]. == Vehicles by Vovol == You can find a list of all vehicles by Vovol [[:Category:Vovol|here]]." wikitext text/x-wiki {{Makeinfo|makename=Vovol|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Volvo_Cars|rlname=Volvo Car Corporation}} Vovol is a fictional Swedish automobile manufacture in Southwest Florida. It is based on [https://www.volvo.com/en/ Volvo]. == Vehicles by Vovol == You can find a list of all vehicles by Vovol [[:Category:Vovol|here]]. 87eb229e40bb3af6758990b05f1296bfa1bbfa5e Category:Vovol 14 497 745 2022-08-25T03:25:33Z Cheemsthethird 10 Created page with "All Vovol vehicles in Southwest Florida." wikitext text/x-wiki All Vovol vehicles in Southwest Florida. 37be10cf285e1f57f66ba76ff5b1b194eae151f7 Edison 0 498 746 2022-08-25T03:30:11Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Edison|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Tesla,_Inc.|rlname=Tesla, Inc.}} Edison is a fictional electric automobile and clean energy company in Southwest Florida. It is based on [https://www.tesla.com Tesla]. == Vehicles by Edison == You can find a list of all vehicles by Edison [[:Category:Edison|here]]." wikitext text/x-wiki {{Makeinfo|makename=Edison|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Tesla,_Inc.|rlname=Tesla, Inc.}} Edison is a fictional electric automobile and clean energy company in Southwest Florida. It is based on [https://www.tesla.com Tesla]. == Vehicles by Edison == You can find a list of all vehicles by Edison [[:Category:Edison|here]]. 9ebbf87ef371869941706432e04fdc60f41289f9 Category:Edison 14 499 747 2022-08-25T03:30:36Z Cheemsthethird 10 Created page with "All Edison vehicles in Southwest Florida." wikitext text/x-wiki All Edison vehicles in Southwest Florida. 439e15b9a1db88c5a67dd5a06ebe0478f88c0cc2 File:R33 Rear.jpg 6 500 748 2022-08-25T04:58:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R33 Front.jpg 6 501 749 2022-08-25T04:58:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1995 Naan Skyline R33 GTR 0 502 750 2022-08-25T04:59:11Z S30Z 2 Created page with " {{Carinfo |name=1995 Naan Skyline R33 GTR |image=R33_Front.jpg |make=Naan |type=Classic |price=$47,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#1996 |rlname=Nissan Skyline GT-R (R33) |limited=0 |electric=0 }} The 1995 Naan Skyline R33 GTR is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $47,800. ==Stats== The R33 GTR has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|..." wikitext text/x-wiki {{Carinfo |name=1995 Naan Skyline R33 GTR |image=R33_Front.jpg |make=Naan |type=Classic |price=$47,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#1996 |rlname=Nissan Skyline GT-R (R33) |limited=0 |electric=0 }} The 1995 Naan Skyline R33 GTR is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $47,800. ==Stats== The R33 GTR has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=276|tqval=260|whval=3395|spdval=149|drv=AWD}} {{Maxstats|hpval=919|tqval=760|whval=2873|spdval=206}} ==Gallery== <gallery> File:R33_Rear.jpg|Rear view of the 1995 Naan Skyline R33 GTR. </gallery> 43d69730f9a6b6e0802ed8d576ab2aaf5195d8c0 751 750 2022-08-25T04:59:39Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1995 Naan Skyline R33 GTR |image=R33_Front.jpg |make=Naan |type=Classic |price=$47,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_4 |rlname=Nissan Skyline GT-R (R33) |limited=0 |electric=0 }} The 1995 Naan Skyline R33 GTR is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $47,800. ==Stats== The R33 GTR has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=276|tqval=260|whval=3395|spdval=149|drv=AWD}} {{Maxstats|hpval=919|tqval=760|whval=2873|spdval=206}} ==Gallery== <gallery> File:R33_Rear.jpg|Rear view of the 1995 Naan Skyline R33 GTR. </gallery> bc4e31803df6a57a56a41cba55575a82ee520623 File:930 Rear.jpg 6 503 752 2022-08-25T05:57:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:930 Front.jpg 6 504 753 2022-08-25T05:57:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1987 Pohrse 911 Turbo 0 505 754 2022-08-25T05:57:55Z S30Z 2 Created page with " {{Carinfo |name=1987 Pohrse 911 Turbo |image=930_Front.jpg |make=Pohrse |type=Classic |price=$184,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_930 |rlname=Porsche 911 Turbo (930) |limited=0 |electric=0 }} The 1987 Pohrse 911 Turbo is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $184,800. ==Stats== The 911 Turbo has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=282|..." wikitext text/x-wiki {{Carinfo |name=1987 Pohrse 911 Turbo |image=930_Front.jpg |make=Pohrse |type=Classic |price=$184,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_930 |rlname=Porsche 911 Turbo (930) |limited=0 |electric=0 }} The 1987 Pohrse 911 Turbo is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $184,800. ==Stats== The 911 Turbo has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=282|tqval=278|whval=2976|spdval=163|drv=RWD}} {{Maxstats|hpval=1108|tqval=798|whval=2476|spdval=186}} ==Gallery== <gallery> File:930_Rear.jpg|Rear view of the 1987 Pohrse 911 Turbo. </gallery> 592355e2e3adefa3513eb2c032370107a9487ad1 File:NSX Rear.jpg 6 506 755 2022-08-25T06:07:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:NSX Front.jpg 6 507 756 2022-08-25T06:08:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1995 Handa NSX 0 508 757 2022-08-25T06:08:53Z S30Z 2 Created page with " {{Carinfo |name=1995 Handa NSX |image=NSX_Front.jpg |make=Handa |type=Classic |price=$89,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NSX_(first_generation) |rlname=Honda NSX (1st gen.) |limited=0 |electric=0 }} The 1995 Handa NSX is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $89,000. ==Stats== The NSX has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=270|tqval=210|..." wikitext text/x-wiki {{Carinfo |name=1995 Handa NSX |image=NSX_Front.jpg |make=Handa |type=Classic |price=$89,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NSX_(first_generation) |rlname=Honda NSX (1st gen.) |limited=0 |electric=0 }} The 1995 Handa NSX is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $89,000. ==Stats== The NSX has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=270|tqval=210|whval=3164|spdval=163|drv=RWD}} {{Maxstats|hpval=1164|tqval=861|whval=2664|spdval=195}} ==Gallery== <gallery> File:NSX_Rear.jpg|Rear view of the 1995 Handa NSX. </gallery> d0946c2b495b3810c5937f79f1a44283b7a7c769 File:944 Front.jpg 6 509 758 2022-08-25T06:15:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:944 Rear.jpg 6 510 759 2022-08-25T06:16:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1991 Pohrse 944 0 511 760 2022-08-25T06:16:28Z S30Z 2 Created page with " {{Carinfo |name=1991 Pohrse 944 |image=944_Front.jpg |make=Pohrse |type=Classic |price=$25,940 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_944 |rlname=Porsche 944 |limited=0 |electric=0 }} The 1991 Pohrse 944 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $25,940. ==Stats== The 944 has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=208|tqval=207|whval=2998|spdval=146|..." wikitext text/x-wiki {{Carinfo |name=1991 Pohrse 944 |image=944_Front.jpg |make=Pohrse |type=Classic |price=$25,940 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_944 |rlname=Porsche 944 |limited=0 |electric=0 }} The 1991 Pohrse 944 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $25,940. ==Stats== The 944 has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=208|tqval=207|whval=2998|spdval=146|drv=RWD}} {{Maxstats|hpval=1055|tqval=1036|whval=2498|spdval=165}} ==Gallery== <gallery> File:944_Rear.jpg|Rear view of the 1991 Pohrse 944. </gallery> 56284b5d72085a8ca61ac2d98b388afd47ca0913 2019 Kawisake Ninja H2 0 96 761 297 2022-08-25T06:43:20Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Kawisake Ninja H2 |image=Ninja_H2_Front.jpg |make=Kawisake |type=Motorcycle |price=$229,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_H2 |rlname=Kawasaki Ninja H2 |limited=0 |electric=0 }} The 2019 Kawisake Ninja H2 is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $229,500. ==Stats== The Ninja H2 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=228|tqval=98|whval=529|spdval=205|drv=RWD}} ==Gallery== <gallery> File:Ninja_H2_Rear.jpg|Rear view of the 2019 Kawisake Ninja H2. File:Ninja_H2_Cluster.jpg|Gauge cluster of the 2019 Kawisake Ninja H2. </gallery> 5a55a8b8e713c40db8943faf42eaa06b84f3279d 2020 BNW S1000RR 0 97 762 284 2022-08-25T06:44:54Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 BNW S1000RR |image=S1000RR_Front.jpg |make=BNW |type=Motorcycle |price=$195,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_S1000RR |rlname=BMW S1000RR |limited=0 |electric=0 }} The 2020 BNW S1000RR is a motorcycle produced by [[BNW]]. It can be purchased from the dealership for $195,995. ==Stats== The S1000RR has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=207|tqval=83|whval=434|spdval=193|drv=RWD}} ==Gallery== <gallery> File:S1000RR_Rear.jpg|Rear view of the 2020 BNW S1000RR. File:S1000RR_Cluster.jpg|Gauge cluster of the 2020 BNW S1000RR. </gallery> a511a20a19a3a36d4a4090d09ba1c3598fa0029e 2015 Yamiiha FZ-07 0 99 763 309 2022-08-25T06:49:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2015 Yamiiha FZ-07 |image=FZ07_Front.jpg |make=Yamiiha |type=Motorcycle |price=$32,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Yamaha_MT-07 |rlname=Yamaha MT-07 (called FZ-07 in North America until 2017) |limited=0 |electric=0 }} The 2015 Yamiiha FZ-07 is a motorcycle produced by [[Yamiiha]]. It can be purchased from the dealership for $32,599. ==Stats== The FZ-07 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=75|tqval=50|whval=399|spdval=142|drv=RWD}} ==Gallery== <gallery> File:FZ07_Rear.jpg|Rear view of the 2015 Yamiiha FZ-07. File:FZ07_Cluster.jpg|Gauge cluster of the 2015 Yamiiha FZ-07. </gallery> 27a79b9fa28d81a425c95ff7b46a3f0097c5bbdc 2016 Conquest Bonneville T120 0 100 764 286 2022-08-25T06:50:47Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Conquest Bonneville T120 |image=T120_Front.jpg |make=Conquest |type=Motorcycle |price=$41,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Triumph_Bonneville_T120_1200 |rlname=Triumph Bonneville T120 1200 |limited=0 |electric=0 }} The 2016 Conquest Bonneville T120 is a motorcycle produced by [[Conquest]]. It can be purchased from the dealership for $41,499. ==Stats== The Bonneville T120 has 1 seat and a fuel capacity of 4 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=80|tqval=77|whval=494|spdval=142|drv=RWD}} ==Gallery== <gallery> File:T120_Rear.jpg|Rear view of the 2016 Conquest Bonneville T120. File:T120_Cluster.jpg|Gauge cluster of the 2016 Conquest Bonneville T120. </gallery> 9a1c15d8d6e825d892659fb9ec8b7b8f23d93510 2022 Atone-Mira Valkyrie 0 442 765 678 2022-08-25T07:09:31Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Atone Mira Valkyrie|image=Valkrie front.png|make=Atone|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone Mira Valkyrie is a hyper car under Atone. This extreme track oriented vehicle was limitedly available with a price of $3,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}}<gallery> File:Valkrie rear.png </gallery> 22fd9029e4ee835e481a7de6538a9654f212a447 778 765 2022-08-25T07:14:12Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Atone Mira Valkyrie|image=Valkrie front.png|make=Atone|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone Mira Valkyrie is a hyper car under [[Atone]]. This extreme track oriented vehicle was available for a limited time with a price of $3,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}}<gallery> File:Valkrie rear.png </gallery> b143e815264bfce53c75a4b09ecd97c177d46afa 785 778 2022-08-25T07:37:16Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Atone-Mira Valkyrie|image=Valkrie front.png|make=Atone-Mira|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone-Mira Valkyrie is a hyper car produced by [[Atone-Mira]]. This extreme track oriented vehicle was available for a limited time with a price of $3,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}} == Gallery == <gallery> File:Valkrie rear.png </gallery> 78b5d7f4012e2e6f5558aeb8ac49ee3256d95447 786 785 2022-08-25T07:37:27Z S30Z 2 S30Z moved page [[2022 Atone Mira Valkyrie]] to [[2022 Atone-Mira Valkyrie]] wikitext text/x-wiki {{Carinfo|name=2022 Atone-Mira Valkyrie|image=Valkrie front.png|make=Atone-Mira|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone-Mira Valkyrie is a hyper car produced by [[Atone-Mira]]. This extreme track oriented vehicle was available for a limited time with a price of $3,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}} == Gallery == <gallery> File:Valkrie rear.png </gallery> 78b5d7f4012e2e6f5558aeb8ac49ee3256d95447 2022 Bulatti Chiron Super Sport 300+ 0 436 766 679 2022-08-25T07:09:40Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.png|make=Bulatti|type=Hyper|price=$3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 Bulatti Chiron Super Sport 300+ is the successor to the 2017 Bulatti Chiron with a whopping 300+ mph top speed hence the name "300). This vehicle was a limited car sold for $3,900,000 for about 2 days. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Bulatti Chiron SS 300+ has 2 seats and a 26 gallon fuel capacity. {{Stockstats|hpval=1180|tqval=1180|whval=4361|spdval=315|drv=AWD}}{{Maxstats|hpval=2073|tqval=1296|whval=3858|spdval=315}}<gallery> File:300+ rear.png </gallery> 6eefdd136627661a80767fc5451e682b5391c6d1 779 766 2022-08-25T07:14:35Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.png|make=Bulatti|type=Hyper|price=$3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 [[Bulatti]] Chiron Super Sport 300+ is the successor to the 2017 Bulatti Chiron with a whopping 300+ mph top speed hence the name "300). This vehicle was a limited car sold for $3,900,000 for about 2 days. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Bulatti Chiron SS 300+ has 2 seats and a 26 gallon fuel capacity. {{Stockstats|hpval=1180|tqval=1180|whval=4361|spdval=315|drv=AWD}}{{Maxstats|hpval=2073|tqval=1296|whval=3858|spdval=315}}<gallery> File:300+ rear.png </gallery> c3e390ec047a934a55027826294afd8ce460f110 2010 Dodje Viper SRT-10 ACR-X 0 173 767 689 2022-08-25T07:09:50Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2010 Dodje Viper SRT-10 ACR-X |image=Viper_ACR-X_Front.jpg |make=Dodje |type=Super |price=$110,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR-X |rlname=Dodge Viper SRT-10 ACR-X |limited=1 |electric=0 }} The 2010 Dodje Viper SRT-10 ACR-X is a two door supercar produced by [[Dodje]]. It is a limited vehicle that was added on June 11, 2022. It was available for 24 hours and can no longer be purchased. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Viper SRT-10 ACR-X has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=640|tqval=585|whval=3190|spdval=190|drv=RWD}} {{Maxstats|hpval=1349|tqval=927|whval=2690|spdval=225}} ==Gallery== <gallery> File:Viper_ACR-X_Rear.jpg|Rear view of the 2010 Dodje Viper SRT-10 ACR-X. </gallery> fc6b70bcd922a87324cd4335b47e3accf42d26bb 2021 Ethanol Venom F5 0 445 768 680 2022-08-25T07:10:09Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Ethanol Venom F5|image=F5 front.png|make=Ethanol|type=Hyper|price=$2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by Ethanol. The car was sold as a limited for $2,100,000 in game. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{Maxstats|hpval=2314|tqval=1316|whval=2553|spdval=329}}<gallery> File:F5 rear.png </gallery> e0a357072a55bc347a3d21c96a36b5a4718ceb0c 780 768 2022-08-25T07:14:47Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Ethanol Venom F5|image=F5 front.png|make=Ethanol|type=Hyper|price=$2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by [[Ethanol]]. The car was sold as a limited for $2,100,000 in game. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{Maxstats|hpval=2314|tqval=1316|whval=2553|spdval=329}}<gallery> File:F5 rear.png </gallery> 31d9b37acf686969ecad055fc401e38477ff401a 1963 Furai 250 GTO 0 465 769 714 2022-08-25T07:10:38Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced in the tuning update and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 5ae94479f94245e429802ee7fe726b67c0c3b8c3 2015 Koneggsaga One:1 0 430 770 684 2022-08-25T07:11:02Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One_to_1_front.png|make=Koneggsaga|type=Hyper|price=$7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under Koneggsaga. It was sold as a limited for about 2-3 days for $7,900,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}}<gallery> File:One to 1 rear.png File:One to 1 interior.png </gallery> d6e178dfb44b741ffa1aad24390a34b145e7acaa 781 770 2022-08-25T07:15:00Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One_to_1_front.png|make=Koneggsaga|type=Hyper|price=$7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under [[Koneggsaga]]. It was sold as a limited for about 2-3 days for $7,900,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}}<gallery> File:One to 1 rear.png File:One to 1 interior.png </gallery> 4bb4359d408471ef4950f9537d99767457cec23c 2009 Lamburghina Reventon Roadster 0 452 771 728 2022-08-25T07:11:22Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Reventon Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} <gallery> File:Revention rear.png|The rear view of the Reventon. File:Revention interior.png|Interior shot of the Reventon. </gallery> 8ba7dfdaeab50cc0c965654e5161ce489494e9bb 2020 Lamburghina Huracan STO 0 461 772 681 2022-08-25T07:11:47Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Lamburghina Huracan STO|image=Sto front.png|make=Lamburghina|type=Super|price=$327,838|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n|rlname=Lamborghini Huracan STO|limited=1|electric=0}} The 2020 Lamburghina Huracan STO was a limited made by [[Lamburghina]] and sold for $327,838. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The STO has 2 seats and a fuel capacity of 20.9 gallons. {{Stockstats|hpval=630|tqval=473|whval=3172|spdval=208|drv=RWD}}{{Maxstats|hpval=1336|tqval=1284|whval=2672|spdval=208}}<gallery> File:Sto rear.png </gallery> 03bcd9c90edec6cb3e978d01db8370a65e4285b1 2022 Lamburghina Countach 0 455 773 716 2022-08-25T07:12:03Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=Lpi 800-4 front.png|make=Lamburghina|type=Super|price=$2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made by [[Lamburghina]] which was sold as a limited for $2,640,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}}<gallery> File:Lpi 800-4 rear.png </gallery> b387948614df8fda4e69f8c7c1e1224db4b79a69 2005 Mazeri MC-12 0 176 774 316 2022-08-25T07:12:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2005 Mazeri MC-12 |image=MC-12_Front.jpg |make=Mazeri |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Maserati_MC12 |rlname=Maserati MC12 |limited=1 |electric=0 }} The 2005 Mazeri MC-12 is a two door supercar produced by [[Mazeri]]. It is a limited vehicle that was added on May 29, 2022. It was available for 24 hours and can no longer be purchased. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The MC-12 has 2 seats and a fuel capacity of 30 gallons. {{Stockstats|hpval=624|tqval=479|whval=3375|spdval=208|drv=RWD}} {{Maxstats|hpval=1623|tqval=1458|whval=2875|spdval=209}} ==Gallery== <gallery> File:MC-12_Rear.jpg|Rear view of the 2005 Mazeri MC-12. </gallery> 0b15e9cfbc8321c1ef53c62be9795232e354ef7a 1998 McFaren F1 0 56 775 321 2022-08-25T07:12:25Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1998 McFaren F1|image=mclarenf1alt_front.jpg|make=McFaren|type=Hyper|price=$22,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_F1|rlname=McLaren F1|limited=1|electric=0}} The [[McFaren]] F1, an iconic v12 powered Hypercar was introduced to Southwest Florida as the first ever limited with the exception of code cars. The car was available for around 2 days with a price of around $22,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The McFaren F1 has 3 seats and a maximum fuel capacity of 23 gallons. {{Stockstats|hpval=618|tqval=480|whval=2509|spdval=238|drv=RWD}}{{Maxstats|hpval=1614|tqval=1087|whval=2009|spdval=238}} <gallery> File:Mclarenf1alt rear.jpg|The rear view of the McFaren F1. </gallery> 09b5c830bda033c43b09a8aa5faa5ec07e5df6e4 2020 McFaren Speedtail 0 305 776 683 2022-08-25T07:12:48Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 McFaren Speedtail|image=Mcfaren speedtail front.png|make=McFaren|type=Hyper|price=$2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 [[McFaren]] Speedtail is a limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The McFaren Speedtail has 3 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1036|tqval=848|whval=3153|spdval=250|drv=RWD}}{{Maxstats|hpval=1722|tqval=1516|whval=2653|spdval=255}} == Gallery == <gallery> File:Mcfaren speedtail rear.png </gallery> c2f30dd095635ffcbf24488b7285a643ff139ae8 2023 Toyoto GR Corolla Morizo Edition 0 170 777 500 2022-08-25T07:12:59Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Morizo Edition |image=Corolla_Morizo_Front.jpg |make=Toyoto |type=Hatchback |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Morizo Edition |limited=1 |electric=0 }} The 2023 Toyoto GR Corolla Morizo Edition is a five door hatchback produced by [[Toyoto]]. It is a limited vehicle that was added on June 11, 2022. It was available for 48 hours and can no longer be purchased. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The GR Corolla Morizo Edition has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=295|whval=3186|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1076|whval=2686|spdval=166}} ==Gallery== <gallery> File:Corolla_Morizo_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Morizo Edition. </gallery> 0c8ee25fad2bfeb72017f1d5e79212c7a98e06a4 File:TRT Front.jpg 6 512 782 2022-08-25T07:33:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRT Rear.jpg 6 513 783 2022-08-25T07:33:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard Bronco TRT 0 514 784 2022-08-25T07:33:46Z S30Z 2 Created page with " {{Carinfo |name=2022 Fard Bronco TRT |image=TRT_Front.jpg |make=Fard |type=SUV |price=$65,730 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021) |rlname=Ford Bronco (6th gen.) |limited=1 |electric=0 }} The 2022 Fard Bronco TRT is a five door SUV produced by [[Fard]]. It is a limited vehicle that was added on August 24, 2022. It was available for 48 hours and can no longer be purchased. As a limited vehicle, it does not occupy..." wikitext text/x-wiki {{Carinfo |name=2022 Fard Bronco TRT |image=TRT_Front.jpg |make=Fard |type=SUV |price=$65,730 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021) |rlname=Ford Bronco (6th gen.) |limited=1 |electric=0 }} The 2022 Fard Bronco TRT is a five door SUV produced by [[Fard]]. It is a limited vehicle that was added on August 24, 2022. It was available for 48 hours and can no longer be purchased. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Bronco TRT has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=330|tqval=415|whval=4757|spdval=123|drv=AWD}} {{Maxstats|hpval=1023|tqval=2066|whval=4257|spdval=197}} ==Gallery== <gallery> File:TRT_Rear.jpg|Rear view of the 2022 Fard Bronco TRT. </gallery> f1c0db797f6c2d3e2d6bdc62a112d1cacef42458 2022 Atone Mira Valkyrie 0 515 787 2022-08-25T07:37:27Z S30Z 2 S30Z moved page [[2022 Atone Mira Valkyrie]] to [[2022 Atone-Mira Valkyrie]] wikitext text/x-wiki #REDIRECT [[2022 Atone-Mira Valkyrie]] c0b711b4ac365c1a5d571d0f40c321d69dda585c File:71Challenger Rear.jpg 6 516 788 2022-08-26T00:16:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:71Challenger Front.jpg 6 517 789 2022-08-26T00:16:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:635CSi Rear.jpg 6 518 790 2022-08-26T00:17:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:635CSi Front.jpg 6 519 791 2022-08-26T00:17:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C10 Rear.jpg 6 520 792 2022-08-26T00:17:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C10 Front.jpg 6 521 793 2022-08-26T00:17:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Boss427 Rear.jpg 6 522 794 2022-08-26T00:18:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Boss427 Front.jpg 6 523 795 2022-08-26T00:18:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C110 Rear.jpg 6 524 796 2022-08-26T00:18:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C110 Front.jpg 6 525 797 2022-08-26T00:18:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C2Vette Rear.jpg 6 526 798 2022-08-26T00:19:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C2Vette Front.jpg 6 527 799 2022-08-26T00:19:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 Rear.jpg 6 528 800 2022-08-26T00:19:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 Front.jpg 6 529 801 2022-08-26T00:19:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E30 Rear.jpg 6 530 802 2022-08-26T00:19:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E30 Front.jpg 6 531 803 2022-08-26T00:20:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:70Charger Rear.jpg 6 532 804 2022-08-26T00:20:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:70Charger Front.jpg 6 533 805 2022-08-26T00:20:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F40 Rear.jpg 6 534 806 2022-08-26T00:20:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F40 Front.jpg 6 535 807 2022-08-26T00:20:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Carlton Rear.jpg 6 536 808 2022-08-26T00:20:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Carlton Front.jpg 6 537 809 2022-08-26T00:20:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1992 Furai F40 0 538 810 2022-08-26T00:21:27Z S30Z 2 Created page with " {{Carinfo |name=1992 Furai F40 |image=F40_Front.jpg |make=Furai |type=Classic |price=$2,079,150 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_F40 |rlname=Ferrari F40 |limited=0 |electric=0 }} The 1992 Furai F40 is a two door coupe produced by [[Furai]]. It can be purchased from the dealership for $2,079,150. ==Stats== The F40 has 2 seats and a fuel capacity of 32 gallons. {{Stockstats|hpval=471|tqval=426|whval=2756|spdval=21..." wikitext text/x-wiki {{Carinfo |name=1992 Furai F40 |image=F40_Front.jpg |make=Furai |type=Classic |price=$2,079,150 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_F40 |rlname=Ferrari F40 |limited=0 |electric=0 }} The 1992 Furai F40 is a two door coupe produced by [[Furai]]. It can be purchased from the dealership for $2,079,150. ==Stats== The F40 has 2 seats and a fuel capacity of 32 gallons. {{Stockstats|hpval=471|tqval=426|whval=2756|spdval=216|drv=RWD}} {{Maxstats|hpval=1355|tqval=905|whval=2256|spdval=221}} ==Gallery== <gallery> File:F40_Rear.jpg|Rear view of the 1992 Furai F40. </gallery> 47de20530cb729085d8dff6768822f53c83f6dd7 1990 Hibiscus Carlton 0 539 811 2022-08-26T00:22:12Z S30Z 2 Created page with " {{Carinfo |name=1990 Hibiscus Carlton |image=Carlton_Front.jpg |make=Hibiscus |type=Classic |price=$61,574 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_Carlton |rlname=Lotus Carlton |limited=0 |electric=0 }} The 1990 Hibiscus Carlton is a four door sedan produced by [[Hibiscus]]. It can be purchased from the dealership for $61,574. ==Stats== The Carlton has 4 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=377|tqv..." wikitext text/x-wiki {{Carinfo |name=1990 Hibiscus Carlton |image=Carlton_Front.jpg |make=Hibiscus |type=Classic |price=$61,574 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_Carlton |rlname=Lotus Carlton |limited=0 |electric=0 }} The 1990 Hibiscus Carlton is a four door sedan produced by [[Hibiscus]]. It can be purchased from the dealership for $61,574. ==Stats== The Carlton has 4 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=377|tqval=419|whval=3726|spdval=180|drv=RWD}} {{Maxstats|hpval=1008|tqval=826|whval=3226|spdval=250}} ==Gallery== <gallery> File:Carlton_Rear.jpg|Rear view of the 1990 Hibiscus Carlton. </gallery> 4d87942c942a23406546a49d36772f5c7a4bd71d 1970 Dodje Charger R/T 0 540 812 2022-08-26T00:22:31Z S30Z 2 Created page with " {{Carinfo |name=1970 Dodje Charger R/T |image=70Charger_Front.jpg |make=Dodje |type=Classic |price=$89,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(1966)#Second_generation= |rlname=Dodge Charger R/T (2nd gen.) |limited=0 |electric=0 }} The 1970 Dodje Charger R/T is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $89,900. ==Stats== The Charger R/T has 4 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=1970 Dodje Charger R/T |image=70Charger_Front.jpg |make=Dodje |type=Classic |price=$89,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(1966)#Second_generation= |rlname=Dodge Charger R/T (2nd gen.) |limited=0 |electric=0 }} The 1970 Dodje Charger R/T is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $89,900. ==Stats== The Charger R/T has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=425|tqval=490|whval=3880|spdval=133|drv=RWD}} {{Maxstats|hpval=1392|tqval=1439|whval=3380|spdval=138}} ==Gallery== <gallery> File:70Charger_Rear.jpg|Rear view of the 1970 Dodje Charger R/T. </gallery> b670126845f1d312c7267add2b46a676d5216ae2 1987 BNW M3 0 541 813 2022-08-26T00:22:57Z S30Z 2 Created page with " {{Carinfo |name=1987 BNW M3 |image=E30_Front.jpg |make=BNW |type=Classic |price=$68,230 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M3#E30_generation_(1986%E2%80%931991) |rlname=BMW M3 (1st gen.) |limited=0 |electric=0 }} The 1987 BNW M3 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $68,230. ==Stats== The M3 has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=197|tqval=177|w..." wikitext text/x-wiki {{Carinfo |name=1987 BNW M3 |image=E30_Front.jpg |make=BNW |type=Classic |price=$68,230 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M3#E30_generation_(1986%E2%80%931991) |rlname=BMW M3 (1st gen.) |limited=0 |electric=0 }} The 1987 BNW M3 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $68,230. ==Stats== The M3 has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=197|tqval=177|whval=2568|spdval=147|drv=RWD}} {{Maxstats|hpval=807|tqval=721|whval=2068|spdval=160}} ==Gallery== <gallery> File:E30_Rear.jpg|Rear view of the 1987 BNW M3. </gallery> ca1febe29161e5a39aad5f4f2faf90042176775b 2002 Naan Skyline R34 GT-R V-Spec II Nür 0 542 814 2022-08-26T00:23:11Z S30Z 2 Created page with " {{Carinfo |name=2002 Naan Skyline R34 GT-R V-Spec II Nür |image=R34_Front.jpg |make=Naan |type=Classic |price=$453,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_(BNR34) |rlname=Nissan Skyline GT-R V-spec II Nür (10th gen.) |limited=0 |electric=0 }} The 2002 Naan Skyline R34 GT-R V-Spec II Nür is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $453,000. ==Stats== The R34 GT..." wikitext text/x-wiki {{Carinfo |name=2002 Naan Skyline R34 GT-R V-Spec II Nür |image=R34_Front.jpg |make=Naan |type=Classic |price=$453,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_(BNR34) |rlname=Nissan Skyline GT-R V-spec II Nür (10th gen.) |limited=0 |electric=0 }} The 2002 Naan Skyline R34 GT-R V-Spec II Nür is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $453,000. ==Stats== The R34 GT-R has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=330|tqval=289|whval=3439|spdval=169|drv=AWD}} {{Maxstats|hpval=1075|tqval=992|whval=2895|spdval=214}} ==Gallery== <gallery> File:R34_Rear.jpg|Rear view of the 2002 Naan Skyline R34 GT-R V-Spec II Nür. </gallery> b474863f9de3d9aa27ec7ba1ac898cbda4de9f55 1967 Chavy Corvette Sting Ray 0 543 815 2022-08-26T00:23:40Z S30Z 2 Created page with " {{Carinfo |name=1967 Chavy Corvette Sting Ray |image=C2Vette_Front.jpg |make=Chavy |type=Classic |price=$82,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C2) |rlname=Chevrolet Corvette (2nd gen.) |limited=0 |electric=0 }} The 1967 Chavy Corvette Sting Ray is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $82,900. ==Stats== The Corvette Sting Ray has 2 seats and a fuel capac..." wikitext text/x-wiki {{Carinfo |name=1967 Chavy Corvette Sting Ray |image=C2Vette_Front.jpg |make=Chavy |type=Classic |price=$82,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C2) |rlname=Chevrolet Corvette (2nd gen.) |limited=0 |electric=0 }} The 1967 Chavy Corvette Sting Ray is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $82,900. ==Stats== The Corvette Sting Ray has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=400|tqval=460|whval=3340|spdval=136|drv=RWD}} {{Maxstats|hpval=1361|tqval=1299|whval=2840|spdval=214}} ==Gallery== <gallery> File:C2Vette_Rear.jpg|Rear view of the 1967 Chavy Corvette Sting Ray. </gallery> 930740ca5fac145334ccfc4daa7b91ee543e2e4a 1973 Naan Skyline 2000GT-R 0 544 816 2022-08-26T00:24:03Z S30Z 2 Created page with " {{Carinfo |name=1973 Naan Skyline 2000GT-R |image=C110_Front.jpg |make=Naan |type=Classic |price=$176,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#Fourth_generation_(C110;_1972) |rlname=Nissan Skyline 2000GT-R (4th gen.) |limited=0 |electric=0 }} The 1973 Naan Skyline 2000GT-R is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $176,000. ==Stats== The Skyline 2000GT-R has 2 seats..." wikitext text/x-wiki {{Carinfo |name=1973 Naan Skyline 2000GT-R |image=C110_Front.jpg |make=Naan |type=Classic |price=$176,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#Fourth_generation_(C110;_1972) |rlname=Nissan Skyline 2000GT-R (4th gen.) |limited=0 |electric=0 }} The 1973 Naan Skyline 2000GT-R is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $176,000. ==Stats== The Skyline 2000GT-R has 2 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=158|tqval=133|whval=2524|spdval=123|drv=RWD}} {{Maxstats|hpval=951|tqval=830|whval=2024|spdval=160}} ==Gallery== <gallery> File:C110_Rear.jpg|Rear view of the 1973 Naan Skyline 2000GT-R. </gallery> 7ddb034de99594f316ea8521b8b6e12efe07489d 1969 Fard Mustang Boss 427 0 545 817 2022-08-26T00:24:26Z S30Z 2 Created page with " {{Carinfo |name=1969 Fard Mustang Boss 427 |image=Boss427_Front.jpg |make=Fard |type=Classic |price=$215,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(first_generation)#1969%E2%80%931970 |rlname=Ford Mustang Boss 429 (1st gen.) |limited=0 |electric=0 }} The 1969 Fard Mustang Boss 427 is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $215,950. ==Stats== The Mustang Boss 427 has 4 s..." wikitext text/x-wiki {{Carinfo |name=1969 Fard Mustang Boss 427 |image=Boss427_Front.jpg |make=Fard |type=Classic |price=$215,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(first_generation)#1969%E2%80%931970 |rlname=Ford Mustang Boss 429 (1st gen.) |limited=0 |electric=0 }} The 1969 Fard Mustang Boss 427 is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $215,950. ==Stats== The Mustang Boss 427 has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=375|tqval=450|whval=3560|spdval=120|drv=RWD}} {{Maxstats|hpval=1325|tqval=1021|whval=3060|spdval=149}} ==Gallery== <gallery> File:Boss427_Rear.jpg|Rear view of the 1969 Fard Mustang Boss 427. </gallery> 5e32c6e258ebe8580535f5b5bd6297b7db23b4ee 1972 Naan Skyline 2000GT-R 0 546 818 2022-08-26T00:24:45Z S30Z 2 Created page with " {{Carinfo |name=1972 Naan Skyline 2000GT-R |image=C10_Front.jpg |make=Naan |type=Classic |price=$135,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#Third_generation_(C10;_1968) |rlname=Nissan Skyline 200GT-R (3rd gen.) |limited=0 |electric=0 }} The 1972 Naan Skyline 2000GT-R is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $135,000. ==Stats== The Skyline 2000GT-R has 2 seats and..." wikitext text/x-wiki {{Carinfo |name=1972 Naan Skyline 2000GT-R |image=C10_Front.jpg |make=Naan |type=Classic |price=$135,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#Third_generation_(C10;_1968) |rlname=Nissan Skyline 200GT-R (3rd gen.) |limited=0 |electric=0 }} The 1972 Naan Skyline 2000GT-R is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $135,000. ==Stats== The Skyline 2000GT-R has 2 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=158|tqval=133|whval=2425|spdval=123|drv=RWD}} {{Maxstats|hpval=951|tqval=830|whval=1925|spdval=165}} ==Gallery== <gallery> File:C10_Rear.jpg|Rear view of the 1972 Naan Skyline 2000GT-R. </gallery> 1ee8c7ffd306c0b36a224029f0634b2d8518606e 1985 BNW M 635CSi 0 547 819 2022-08-26T00:25:08Z S30Z 2 Created page with " {{Carinfo |name=1985 BNW M 635CSi |image=635CSi_Front.jpg |make=BNW |type=Classic |price=$16,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M6#E24 |rlname=BMW M635CSi |limited=0 |electric=0 }} The 1985 BNW M 635CSi is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $16,550. ==Stats== The 635CSi has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=286|tqval=251|whval=3307|spdval=1..." wikitext text/x-wiki {{Carinfo |name=1985 BNW M 635CSi |image=635CSi_Front.jpg |make=BNW |type=Classic |price=$16,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M6#E24 |rlname=BMW M635CSi |limited=0 |electric=0 }} The 1985 BNW M 635CSi is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $16,550. ==Stats== The 635CSi has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=286|tqval=251|whval=3307|spdval=156|drv=RWD}} {{Maxstats|hpval=923|tqval=751|whval=2807|spdval=165}} ==Gallery== <gallery> File:635CSi_Rear.jpg|Rear view of the 1985 BNW M 635CSi. </gallery> 06615967eb2405f51e29c56184a8fa3a7c448d5d 1971 Dodje Challenger R/T 0 548 820 2022-08-26T00:25:27Z S30Z 2 Created page with " {{Carinfo |name=1971 Dodje Challenger R/T |image=71Challenger_Front.jpg |make=Dodje |type=Classic |price=$58,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#First_generation_(1970%E2%80%931974) |rlname=Dodge Challenger R/T (1st gen.) |limited=0 |electric=0 }} The 1971 Dodje Challenger R/T is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $58,995. ==Stats== The Challenger R/T has..." wikitext text/x-wiki {{Carinfo |name=1971 Dodje Challenger R/T |image=71Challenger_Front.jpg |make=Dodje |type=Classic |price=$58,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#First_generation_(1970%E2%80%931974) |rlname=Dodge Challenger R/T (1st gen.) |limited=0 |electric=0 }} The 1971 Dodje Challenger R/T is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $58,995. ==Stats== The Challenger R/T has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=330|tqval=410|whval=3737|spdval=115|drv=RWD}} {{Maxstats|hpval=1258|tqval=1384|whval=3237|spdval=116}} ==Gallery== <gallery> File:71Challenger_Rear.jpg|Rear view of the 1971 Dodje Challenger R/T. </gallery> a9775e8df8e089b6b3d9da97a8f0755dfc8c5082 File:Vanagon Front.jpg 6 549 821 2022-08-26T01:14:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Vanagon Rear.jpg 6 550 822 2022-08-26T01:14:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Beetle Front.jpg 6 551 823 2022-08-26T01:14:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Beetle Rear.jpg 6 552 824 2022-08-26T01:14:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:69Daytona Rear.jpg 6 553 825 2022-08-26T01:14:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:69Daytona Front.jpg 6 554 826 2022-08-26T01:15:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superbird Rear.jpg 6 555 827 2022-08-26T01:15:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superbird Front.jpg 6 556 828 2022-08-26T01:15:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1969 Dodje Daytona 0 557 829 2022-08-26T01:16:02Z S30Z 2 Created page with " {{Carinfo |name=1969 Dodje Daytona |image=69Daytona_Front.jpg |make=Dodje |type=Classic |price=$262,180 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_Daytona |rlname=Dodge Charger Daytona (1st gen.) |limited=0 |electric=0 }} The 1969 Dodje Daytona is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $262,180. ==Stats== The Daytona has 4 seats and a fuel capacity of 19 gallons. {{Stocks..." wikitext text/x-wiki {{Carinfo |name=1969 Dodje Daytona |image=69Daytona_Front.jpg |make=Dodje |type=Classic |price=$262,180 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_Daytona |rlname=Dodge Charger Daytona (1st gen.) |limited=0 |electric=0 }} The 1969 Dodje Daytona is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $262,180. ==Stats== The Daytona has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=425|tqval=490|whval=4190|spdval=139|drv=RWD}} {{Maxstats|hpval=1392|tqval=1387|whval=3690|spdval=141}} ==Gallery== <gallery> File:69Daytona_Rear.jpg|Rear view of the 1969 Dodje Daytona. </gallery> 527051603f4aa6adf81bac795afa6dc2a223f202 1970 Plywood Roadrunner Superbird 0 558 830 2022-08-26T01:16:21Z S30Z 2 Created page with " {{Carinfo |name=1970 Plywood Roadrunner Superbird |image=Superbird_Front.jpg |make=Plywood |type=Classic |price=$280,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Plymouth_Superbird |rlname=Plymouth Superbird |limited=0 |electric=0 }} The 1970 Plywood Roadrunner Superbird is a two door coupe produced by [[Plywood]]. It can be purchased from the dealership for $280,000. ==Stats== The Roadrunner Superbird has 4 seats and a fuel cap..." wikitext text/x-wiki {{Carinfo |name=1970 Plywood Roadrunner Superbird |image=Superbird_Front.jpg |make=Plywood |type=Classic |price=$280,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Plymouth_Superbird |rlname=Plymouth Superbird |limited=0 |electric=0 }} The 1970 Plywood Roadrunner Superbird is a two door coupe produced by [[Plywood]]. It can be purchased from the dealership for $280,000. ==Stats== The Roadrunner Superbird has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=433|tqval=472|whval=4250|spdval=130|drv=RWD}} {{Maxstats|hpval=1392|tqval=1387|whval=3750|spdval=131}} ==Gallery== <gallery> File:Superbird_Rear.jpg|Rear view of the 1970 Plywood Roadrunner Superbird. </gallery> fbb98b9578ac369ddddf6a8aea2277b2ad18dd41 1963 Volkinsen Beetle 0 559 831 2022-08-26T01:16:38Z S30Z 2 Created page with " {{Carinfo |name=1963 Volkinsen Beetle |image=Beetle_Front.jpg |make=Volkinsen |type=Classic |price=$34,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Beetle |rlname=Volkswagen Beetle (Type 1) |limited=0 |electric=0 }} The 1963 Volkinsen Beetle is a two door hatchback produced by [[Volkinsen]]. It can be purchased from the dealership for $34,995. ==Stats== The Beetle has 4 seats and a fuel capacity of 11 gallons. {{Stoc..." wikitext text/x-wiki {{Carinfo |name=1963 Volkinsen Beetle |image=Beetle_Front.jpg |make=Volkinsen |type=Classic |price=$34,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Beetle |rlname=Volkswagen Beetle (Type 1) |limited=0 |electric=0 }} The 1963 Volkinsen Beetle is a two door hatchback produced by [[Volkinsen]]. It can be purchased from the dealership for $34,995. ==Stats== The Beetle has 4 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=40|tqval=64|whval=1600|spdval=65|drv=RWD}} {{Maxstats|hpval=706|tqval=1100|whval=1100|spdval=88}} ==Gallery== <gallery> File:Beetle_Rear.jpg|Rear view of the 1963 Volkinsen Beetle. </gallery> 975b86a70f9f1d68173e325de250d9baca71f82f 1969 Volkinsen Vanagon 0 560 832 2022-08-26T01:16:47Z S30Z 2 Created page with " {{Carinfo |name=1969 Volkinsen Vanagon |image=Vanagon_Front.jpg |make=Volkinsen |type=Classic |price=$94,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Type_2 |rlname=Volkswagen Type 2 |limited=0 |electric=0 }} The 1969 Volkinsen Vanagon is a three door van produced by [[Volkinsen]]. It can be purchased from the dealership for $94,500. ==Stats== The Vanagon has 7 seats and a fuel capacity of 11 gallons. {{Stockstats|hp..." wikitext text/x-wiki {{Carinfo |name=1969 Volkinsen Vanagon |image=Vanagon_Front.jpg |make=Volkinsen |type=Classic |price=$94,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Type_2 |rlname=Volkswagen Type 2 |limited=0 |electric=0 }} The 1969 Volkinsen Vanagon is a three door van produced by [[Volkinsen]]. It can be purchased from the dealership for $94,500. ==Stats== The Vanagon has 7 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=44|tqval=64|whval=2723|spdval=65|drv=RWD}} {{Maxstats|hpval=714|tqval=1022|whval=2223|spdval=92}} ==Gallery== <gallery> File:Vanagon_Rear.jpg|Rear view of the 1969 Volkinsen Vanagon. </gallery> e6ae33fc4448bef0c6d8ccd5b5aa419dfc1ffbfe File:FC3S Rear.jpg 6 561 833 2022-08-26T02:19:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FC3S Front.jpg 6 562 834 2022-08-26T02:20:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GiuliaGTA Rear.jpg 6 563 835 2022-08-26T02:20:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GiuliaGTA Front.jpg 6 564 836 2022-08-26T02:20:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GNX Rear.jpg 6 565 837 2022-08-26T02:20:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GNX Front.jpg 6 566 838 2022-08-26T02:21:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Testarossa Rear.jpg 6 567 839 2022-08-26T02:21:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Testarossa Front.jpg 6 568 840 2022-08-26T02:21:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stratos Rear.jpg 6 569 841 2022-08-26T02:21:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stratos Front.jpg 6 570 842 2022-08-26T02:22:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Countach Rear.jpg 6 571 843 2022-08-26T02:22:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Countach Front.jpg 6 572 844 2022-08-26T02:22:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS200 Engine.jpg 6 573 845 2022-08-26T02:22:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS200 Rear.jpg 6 574 846 2022-08-26T02:22:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS200 Front.jpg 6 575 847 2022-08-26T02:22:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1986 Fard RS200 Evolution 0 576 848 2022-08-26T02:23:25Z S30Z 2 Created page with " {{Carinfo |name=1986 Fard RS200 Evolution |image=RS200_Front.jpg |make=Fard |type=Classic |price=$409,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_RS200 |rlname=Ford RS200 Evolution |limited=0 |electric=0 }} The 1986 Fard RS200 Evolution is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $409,000. ==Stats== The RS200 has 2 seats and a fuel capacity of 28 gallons. {{Stockstats|hpval=572|tq..." wikitext text/x-wiki {{Carinfo |name=1986 Fard RS200 Evolution |image=RS200_Front.jpg |make=Fard |type=Classic |price=$409,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_RS200 |rlname=Ford RS200 Evolution |limited=0 |electric=0 }} The 1986 Fard RS200 Evolution is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $409,000. ==Stats== The RS200 has 2 seats and a fuel capacity of 28 gallons. {{Stockstats|hpval=572|tqval=429|whval=2601|spdval=170|drv=AWD}} {{Maxstats|hpval=1483|tqval=1123|whval=2101|spdval=172}} ==Gallery== <gallery> File:RS200_Rear.jpg|Rear view of the 1986 Fard RS200 Evolution. File:RS200_Engine.jpg|Engine shot of the 1986 Fard RS200 Evolution. </gallery> 088c13e92745b0649a7c13aae98f63629d73275d 1986 Lamburghina Countach 5000 QV 0 577 849 2022-08-26T02:23:49Z S30Z 2 Created page with " {{Carinfo |name=1986 Lamburghina Countach 5000 QV |image=Countach_Front.jpg |make=Lamburghina |type=Classic |price=$860,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach |rlname=Lamborghini Countach |limited=0 |electric=0 }} The 1986 Lamburghina Countach 5000 QV is a two door coupe produced by [[Lamburghina]]. It can be purchased from the dealership for $860,000. ==Stats== The Countach has 2 seats and a fuel capa..." wikitext text/x-wiki {{Carinfo |name=1986 Lamburghina Countach 5000 QV |image=Countach_Front.jpg |make=Lamburghina |type=Classic |price=$860,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach |rlname=Lamborghini Countach |limited=0 |electric=0 }} The 1986 Lamburghina Countach 5000 QV is a two door coupe produced by [[Lamburghina]]. It can be purchased from the dealership for $860,000. ==Stats== The Countach has 2 seats and a fuel capacity of 29 gallons. {{Stockstats|hpval=420|tqval=341|whval=3285|spdval=182|drv=RWD}} {{Maxstats|hpval=1385|tqval=924|whval=2785|spdval=194}} ==Gallery== <gallery> File:Countach_Rear.jpg|Rear view of the 1986 Lamburghina Countach 5000 QV. </gallery> 0c101fc7f4617fe80cbe12ed166c996930269f1c 1974 Lancer Stratos HF Stradale 0 578 850 2022-08-26T02:24:07Z S30Z 2 Created page with " {{Carinfo |name=1974 Lancer Stratos HF Stradale |image=Stratos_Front.jpg |make=Lancer |type=Classic |price=$451,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lancia_Stratos |rlname=Lancia Stratos HF Stradale |limited=0 |electric=0 }} The 1974 Lancer Stratos HF Stradale is a two door coupe produced by [[Lancer]]. It can be purchased from the dealership for $451,000. ==Stats== The Stratos has 2 seats and a fuel capacity of 21 gallo..." wikitext text/x-wiki {{Carinfo |name=1974 Lancer Stratos HF Stradale |image=Stratos_Front.jpg |make=Lancer |type=Classic |price=$451,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lancia_Stratos |rlname=Lancia Stratos HF Stradale |limited=0 |electric=0 }} The 1974 Lancer Stratos HF Stradale is a two door coupe produced by [[Lancer]]. It can be purchased from the dealership for $451,000. ==Stats== The Stratos has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=190|tqval=166|whval=2160|spdval=142|drv=RWD}} {{Maxstats|hpval=1013|tqval=1036|whval=1660|spdval=149}} ==Gallery== <gallery> File:Stratos_Rear.jpg|Rear view of the 1974 Lancer Stratos HF Stradale. </gallery> 686084cda7f9d83dfd1d68fca2b73e85078d4c2d 1984 Furai Testarossa 0 579 851 2022-08-26T02:24:21Z S30Z 2 Created page with " {{Carinfo |name=1984 Furai Testarossa |image=Testarossa_Front.jpg |make=Furai |type=Classic |price=$179,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_Testarossa |rlname=Ferrari Testarossa |limited=0 |electric=0 }} The 1984 Furai Testarossa is a two door coupe produced by [[Furai]]. It can be purchased from the dealership for $179,500. ==Stats== The Testarossa has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hp..." wikitext text/x-wiki {{Carinfo |name=1984 Furai Testarossa |image=Testarossa_Front.jpg |make=Furai |type=Classic |price=$179,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_Testarossa |rlname=Ferrari Testarossa |limited=0 |electric=0 }} The 1984 Furai Testarossa is a two door coupe produced by [[Furai]]. It can be purchased from the dealership for $179,500. ==Stats== The Testarossa has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=380|tqval=361|whval=3660|spdval=179|drv=RWD}} {{Maxstats|hpval=1332|tqval=1103|whval=3160|spdval=182}} ==Gallery== <gallery> File:Testarossa_Rear.jpg|Rear view of the 1984 Furai Testarossa. </gallery> 0fb8ba85337d77f67dd6834ec7930810cc36a817 1987 Brick Grand National GNX 0 580 852 2022-08-26T02:24:43Z S30Z 2 Created page with " {{Carinfo |name=1987 Brick Grand National GNX |image=GNX_Front.jpg |make=Brick |type=Classic |price=$107,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Buick_Regal#GNX |rlname=Buick GNX |limited=0 |electric=0 }} The 1987 Brick Grand National GNX is a two door coupe produced by [[Brick]]. It can be purchased from the dealership for $107,500. ==Stats== The GNX has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=276|tq..." wikitext text/x-wiki {{Carinfo |name=1987 Brick Grand National GNX |image=GNX_Front.jpg |make=Brick |type=Classic |price=$107,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Buick_Regal#GNX |rlname=Buick GNX |limited=0 |electric=0 }} The 1987 Brick Grand National GNX is a two door coupe produced by [[Brick]]. It can be purchased from the dealership for $107,500. ==Stats== The GNX has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=276|tqval=360|whval=3474|spdval=154|drv=RWD}} {{Maxstats|hpval=1119|tqval=643|whval=2974|spdval=243}} ==Gallery== <gallery> File:GNX_Rear.jpg|Rear view of the 1987 Brick Grand National GNX. </gallery> 332b126de0cf1d6de325de5c470af0cc5c5d276c 1989 Mazday RX-7 Turbo II 0 581 853 2022-08-26T02:25:02Z S30Z 2 Created page with " {{Carinfo |name=1989 Mazday RX-7 Turbo II |image=FC3S_Front.jpg |make=Mazday |type=Classic |price=$16,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-7#Second_generation_(FC3S_and_FC3C) |rlname=Mazda RX-7 (2nd gen.) |limited=0 |electric=0 }} The 1989 Mazday RX-7 Turbo II is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $16,250. ==Stats== The RX-7 has 2 seats and a fuel capacity of 17..." wikitext text/x-wiki {{Carinfo |name=1989 Mazday RX-7 Turbo II |image=FC3S_Front.jpg |make=Mazday |type=Classic |price=$16,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-7#Second_generation_(FC3S_and_FC3C) |rlname=Mazda RX-7 (2nd gen.) |limited=0 |electric=0 }} The 1989 Mazday RX-7 Turbo II is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $16,250. ==Stats== The RX-7 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=197|tqval=195|whval=2851|spdval=143|drv=RWD}} {{Maxstats|hpval=1002|tqval=923|whval=2351|spdval=178}} ==Gallery== <gallery> File:FC3S_Rear.jpg|Rear view of the 1989 Mazday RX-7 Turbo II. </gallery> 52ad60db155af5a6129715113ad3a4810f83b8cc 1966 Alpha Giulia Sprint GTA 0 582 854 2022-08-26T02:25:19Z S30Z 2 Created page with " {{Carinfo |name=1966 Alpha Giulia Sprint GTA |image=GiuliaGTA_Front.jpg |make=Alpha |type=Classic |price=$285,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_105/115_Series_Coup%C3%A9s#Giulia_Sprint_GTA_(1965%E2%80%931969) |rlname=Alpha Romeo Giulia Sprint GTA |limited=0 |electric=0 }} The 1966 Alpha Giulia Sprint GTA is a two door coupe produced by [[Alpha]]. It can be purchased from the dealership for $285,000. ==Stats..." wikitext text/x-wiki {{Carinfo |name=1966 Alpha Giulia Sprint GTA |image=GiuliaGTA_Front.jpg |make=Alpha |type=Classic |price=$285,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_105/115_Series_Coup%C3%A9s#Giulia_Sprint_GTA_(1965%E2%80%931969) |rlname=Alpha Romeo Giulia Sprint GTA |limited=0 |electric=0 }} The 1966 Alpha Giulia Sprint GTA is a two door coupe produced by [[Alpha]]. It can be purchased from the dealership for $285,000. ==Stats== The Giulia has 2 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=113|tqval=117|whval=1874|spdval=114|drv=RWD}} {{Maxstats|hpval=858|tqval=862|whval=1374|spdval=114}} ==Gallery== <gallery> File:GiuliaGTA_Rear.jpg|Rear view of the 1966 Alpha Giulia Sprint GTA. </gallery> 3a6c107a2200deedcf830081734517510cf65e10 File:EvoX Front.jpg 6 583 855 2022-08-26T04:28:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EvoX Rear.jpg 6 584 856 2022-08-26T04:28:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerBadcat Front.jpg 6 585 857 2022-08-26T04:28:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerBadcat Rear.jpg 6 586 858 2022-08-26T04:28:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Versa Front.jpg 6 587 859 2022-08-26T04:28:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Versa Rear.jpg 6 588 860 2022-08-26T04:29:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spur Front.jpg 6 589 861 2022-08-26T04:29:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spur Rear.jpg 6 590 862 2022-08-26T04:29:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E63 Front.jpg 6 591 863 2022-08-26T04:29:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E63 Rear.jpg 6 592 864 2022-08-26T04:29:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G70 Front.jpg 6 593 865 2022-08-26T04:30:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G70 Rear.jpg 6 594 866 2022-08-26T04:31:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sonata Front.jpg 6 595 867 2022-08-26T04:31:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sonata Rear.jpg 6 596 868 2022-08-26T04:31:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dart Rear.jpg 6 597 869 2022-08-26T04:31:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dart Front.jpg 6 598 870 2022-08-26T04:32:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2014 Mitsabisha Lancer Evolution 0 599 871 2022-08-26T04:32:41Z S30Z 2 Created page with " {{Carinfo |name=2014 Mitsabisha Lancer Evolution |image=EvoX_Front.jpg |make=Mitsabisha |type=Sedan |price=$37,852 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution_X |rlname=Mitsubishi Lancer Evolution X |limited=0 |electric=0 }} The 2014 Mitsabisha Lancer Evolution is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $37,852. ==Stats== The Lancer Evolution has 5 seats..." wikitext text/x-wiki {{Carinfo |name=2014 Mitsabisha Lancer Evolution |image=EvoX_Front.jpg |make=Mitsabisha |type=Sedan |price=$37,852 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution_X |rlname=Mitsubishi Lancer Evolution X |limited=0 |electric=0 }} The 2014 Mitsabisha Lancer Evolution is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $37,852. ==Stats== The Lancer Evolution has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=303|tqval=305|whval=3527|spdval=153|drv=AWD}} {{Maxstats|hpval=1000|tqval=1094|whval=3027|spdval=154}} ==Gallery== <gallery> File:EvoX_Rear.jpg|Rear view of the 2014 Mitsabisha Lancer Evolution. </gallery> f4355b75e9500ee7719c03fdac96f9a043e306b3 2020 Dodje Charger Badcat 0 600 872 2022-08-26T04:33:08Z S30Z 2 Created page with " {{Carinfo |name=2020 Dodje Charger Badcat |image=ChargerBadcat_Front.jpg |make=Dodje |type=Sedan |price=$66,295 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $66,295. ==Stats== The Charger Badcat has 5 seats and a fuel..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat |image=ChargerBadcat_Front.jpg |make=Dodje |type=Sedan |price=$66,295 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $66,295. ==Stats== The Charger Badcat has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=707|tqval=639|whval=4586|spdval=198|drv=RWD}} {{Maxstats|hpval=1529|tqval=1477|whval=4035|spdval=226}} ==Gallery== <gallery> File:ChargerBadcat_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat. </gallery> f9f5552b4a446c51445d8a997559221e9e8d9ee1 2022 Naan Versa 0 601 873 2022-08-26T04:33:38Z S30Z 2 Created page with " {{Carinfo |name=2020 Naan Versa |image=Versa_Front.jpg |make=Naan |type=Sedan |price=$14,830 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Almera#N18 |rlname=Nissan Versa (3rd gen.) |limited=0 |electric=0 }} The 2020 Naan Versa is a four door sedan produced by [[Naan]]. It can be purchased from the dealership for $14,830. ==Stats== The Versa has 5 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=121|tqval=142|whval..." wikitext text/x-wiki {{Carinfo |name=2020 Naan Versa |image=Versa_Front.jpg |make=Naan |type=Sedan |price=$14,830 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Almera#N18 |rlname=Nissan Versa (3rd gen.) |limited=0 |electric=0 }} The 2020 Naan Versa is a four door sedan produced by [[Naan]]. It can be purchased from the dealership for $14,830. ==Stats== The Versa has 5 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=121|tqval=142|whval=2729|spdval=100|drv=FWD}} {{Maxstats|hpval=876|tqval=868|whval=2229|spdval=162}} ==Gallery== <gallery> File:Versa_Rear.jpg|Rear view of the 2020 Naan Versa. </gallery> 88a4d6ba23cd6e24fc6631ea489c08979a13ecce 2020 Banthey Flying Spur 0 602 874 2022-08-26T04:34:05Z S30Z 2 Created page with " {{Carinfo |name=2020 Banthey Flying Spur |image=Spur_Front.jpg |make=Banthey |type=Sedan |price=$253,570 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bentley_Flying_Spur_(2005)#Third_generation_(2019%E2%80%93present) |rlname=Bentley Flying Spur |limited=0 |electric=0 }} The 2020 Banthey Flying Spur is a four door sedan produced by [[Banthey]]. It can be purchased from the dealership for $253,570. ==Stats== The Flying Spur has 5 seat..." wikitext text/x-wiki {{Carinfo |name=2020 Banthey Flying Spur |image=Spur_Front.jpg |make=Banthey |type=Sedan |price=$253,570 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bentley_Flying_Spur_(2005)#Third_generation_(2019%E2%80%93present) |rlname=Bentley Flying Spur |limited=0 |electric=0 }} The 2020 Banthey Flying Spur is a four door sedan produced by [[Banthey]]. It can be purchased from the dealership for $253,570. ==Stats== The Flying Spur has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=626|tqval=680|whval=5373|spdval=200|drv=AWD}} {{Maxstats|hpval=1196|tqval=1443|whval=4879|spdval=260}} ==Gallery== <gallery> File:Spur_Rear.jpg|Rear view of the 2020 Banthey Flying Spur. </gallery> 1101a475922347e6067fb6a2418510f729fa50d3 2018 Muaraci-AGM E63 S 0 603 875 2022-08-26T04:34:30Z S30Z 2 Created page with " {{Carinfo |name=2018 Muaraci-AGM E63 S |image=E63_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$130,560 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_E-Class_(W213)#Mercedes-AMG_models |rlname=Mercedes-AMG E 63 S (W213) |limited=0 |electric=0 }} The 2018 Muaraci-AGM E63 S is a four door sedan produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $130,560. ==Stats== The AGM E63 S has 5 seats and a..." wikitext text/x-wiki {{Carinfo |name=2018 Muaraci-AGM E63 S |image=E63_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$130,560 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_E-Class_(W213)#Mercedes-AMG_models |rlname=Mercedes-AMG E 63 S (W213) |limited=0 |electric=0 }} The 2018 Muaraci-AGM E63 S is a four door sedan produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $130,560. ==Stats== The AGM E63 S has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=603|tqval=591|whval=4515|spdval=186|drv=AWD}} {{Maxstats|hpval=1167|tqval=1300|whval=4015|spdval=230}} ==Gallery== <gallery> File:E63_Rear.jpg|Rear view of the 2018 Muaraci-AGM E63 S. </gallery> 238195c53bbe747bbba6eae6ea789678f07605a4 2020 Genesys G70 0 604 876 2022-08-26T04:34:48Z S30Z 2 Created page with " {{Carinfo |name=2020 Genesys G70 |image=G70_Front.jpg |make=Genesys |type=Sedan |price=$51,530 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Genesis_G70 |rlname=Genesis G70 |limited=0 |electric=0 }} The 2020 Genesys G70 is a four door sedan produced by [[Genesys]]. It can be purchased from the dealership for $51,530. ==Stats== The G70 has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=365|tqval=392|whval=3913|spdval=1..." wikitext text/x-wiki {{Carinfo |name=2020 Genesys G70 |image=G70_Front.jpg |make=Genesys |type=Sedan |price=$51,530 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Genesis_G70 |rlname=Genesis G70 |limited=0 |electric=0 }} The 2020 Genesys G70 is a four door sedan produced by [[Genesys]]. It can be purchased from the dealership for $51,530. ==Stats== The G70 has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=365|tqval=392|whval=3913|spdval=163|drv=AWD}} {{Maxstats|hpval=947|tqval=945|whval=3413|spdval=236}} ==Gallery== <gallery> File:G70_Rear.jpg|Rear view of the 2020 Genesys G70. </gallery> 1c1195a3a03b6e137d836166b27cb807d00394a4 2021 Hayunai Sonata Hybrid 0 605 877 2022-08-26T04:35:16Z S30Z 2 Created page with " {{Carinfo |name=2021 Hayunai Sonata Hybrid |image=Sonata_Front.jpg |make=Hayunai |type=Sedan |price=$30,875 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Sonata#Eighth_generation_(DN8;_2019) |rlname=Hyundai Sonata (8th gen.) |limited=0 |electric=0 }} The 2021 Hayunai Sonata Hybrid is a four door sedan produced by [[Hayunai]]. It can be purchased from the dealership for $30,875. ==Stats== The Sonata Hybrid has 5 seats and a fu..." wikitext text/x-wiki {{Carinfo |name=2021 Hayunai Sonata Hybrid |image=Sonata_Front.jpg |make=Hayunai |type=Sedan |price=$30,875 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Sonata#Eighth_generation_(DN8;_2019) |rlname=Hyundai Sonata (8th gen.) |limited=0 |electric=0 }} The 2021 Hayunai Sonata Hybrid is a four door sedan produced by [[Hayunai]]. It can be purchased from the dealership for $30,875. ==Stats== The Sonata Hybrid has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=192|tqval=271|whval=3404|spdval=130|drv=FWD}} {{Maxstats|hpval=1022|tqval=1156|whval=2904|spdval=194}} ==Gallery== <gallery> File:Sonata_Rear.jpg|Rear view of the 2021 Hayunai Sonata Hybrid. </gallery> 7c5ee07d6ec3e4799d696c4879c6af649148b4fe 2013 Dodje Dart GT 0 606 878 2022-08-26T04:36:00Z S30Z 2 Created page with " {{Carinfo |name=2013 Dodje Dart GT |image=Dart_Front.jpg |make=Dodje |type=Sedan |price=$13,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Dart_(PF) |rlname=Dodge Dart |limited=0 |electric=0 }} The 2013 Dodje Dart GT is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $13,590. ==Stats== The Dart has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=184|tqval=184|whval=3298|spd..." wikitext text/x-wiki {{Carinfo |name=2013 Dodje Dart GT |image=Dart_Front.jpg |make=Dodje |type=Sedan |price=$13,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Dart_(PF) |rlname=Dodge Dart |limited=0 |electric=0 }} The 2013 Dodje Dart GT is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $13,590. ==Stats== The Dart has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=184|tqval=184|whval=3298|spdval=117|drv=FWD}} {{Maxstats|hpval=1005|tqval=897|whval=2798|spdval=201}} ==Gallery== <gallery> File:Dart_Rear.jpg|Rear view of the 2013 Dodje Dart GT. </gallery> 57e0582524cd9152b4e07b26f5b1376fecb2d1c9 2021 Ethanol Venom F5 0 445 881 780 2022-08-26T05:07:20Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2021 Ethanol Venom F5|image=F5 Front.png|make=Ethanol|type=Hyper|price=$2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by [[Ethanol]]. The car was sold as a limited for $2,100,000 in game. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{Maxstats|hpval=2314|tqval=1316|whval=2553|spdval=329}} == Gallery == [[File:F5 Rear.png|left|thumb|Rear view of the Venom F5]] bb2e0860ffa38eff19ef421698b4049ad5adb009 2022 Atone-Mira Valkyrie 0 442 884 786 2022-08-26T05:12:44Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2022 Atone-Mira Valkyrie|image=Valkrie Front.png|make=Atone-Mira|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone-Mira Valkyrie is a hyper car produced by [[Atone-Mira]]. This extreme track oriented vehicle was available for a limited time with a price of $3,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}} == Gallery == <gallery> File:Valkrie Rear.png </gallery> a2dee39274d063f12a0f7d18164098750f76d535 Main Page 0 1 885 415 2022-08-26T05:32:26Z S30Z 2 /* Welcome to the Official Southwest Florida Roblox Wiki! */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! Fun fact: This wiki has a dark mode! You can find it in the menu on the top left. ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. ===For editors=== [[Guides]] c52241a363798071d4a63ced86c9d375c46cb002 File:530i Rear.jpg 6 611 886 2022-08-26T08:37:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:530i Front.jpg 6 612 887 2022-08-26T08:38:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS6Avant Rear.jpg 6 613 888 2022-08-26T08:38:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS6Avant Front.jpg 6 614 889 2022-08-26T08:38:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:19M5 Rear.jpg 6 615 890 2022-08-26T08:38:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:19M5 Front.jpg 6 616 891 2022-08-26T08:39:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Taurus Rear.jpg 6 617 892 2022-08-26T08:39:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Taurus Front.jpg 6 618 893 2022-08-26T08:39:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E-Tron GT Rear.jpg 6 619 894 2022-08-26T08:39:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E-Tron GT Front.jpg 6 620 895 2022-08-26T08:39:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Avalon Rear.jpg 6 621 896 2022-08-26T08:40:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Avalon Front.jpg 6 622 897 2022-08-26T08:40:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ghost Rear.jpg 6 623 898 2022-08-26T08:40:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ghost Front.jpg 6 624 899 2022-08-26T08:40:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evo8 Rear.jpg 6 625 900 2022-08-26T08:41:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evo8 Front.jpg 6 626 901 2022-08-26T08:41:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A6 Rear.jpg 6 627 902 2022-08-26T08:41:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A6 Front.jpg 6 628 903 2022-08-26T08:41:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LS500 Rear.jpg 6 629 904 2022-08-26T08:41:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LS500 Front.jpg 6 630 905 2022-08-26T08:42:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT63 Rear.jpg 6 631 906 2022-08-26T08:42:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT63 Front.jpg 6 632 907 2022-08-26T08:42:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Model S Rear.jpg 6 633 908 2022-08-26T08:42:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Model S Front.jpg 6 634 909 2022-08-26T08:42:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fusion Front.jpg 6 635 910 2022-08-26T08:43:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fusion Rear.jpg 6 636 911 2022-08-26T08:43:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Fard Fusion 0 637 912 2022-08-26T08:45:08Z S30Z 2 Created page with " {{Carinfo |name=2020 Fard Fusion |image=Fusion_Front.jpg |make=Fard |type=Sedan |price=$32,645 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Fard Fusion is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fusion has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=240|tqval=285|whval=3525|spdval=110|drv=FWD}} {{Maxstats|hpval=..." wikitext text/x-wiki {{Carinfo |name=2020 Fard Fusion |image=Fusion_Front.jpg |make=Fard |type=Sedan |price=$32,645 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Fard Fusion is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fusion has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=240|tqval=285|whval=3525|spdval=110|drv=FWD}} {{Maxstats|hpval=1121|tqval=1314|whval=3025|spdval=188}} ==Gallery== <gallery> File:Fusion_Rear.jpg|Rear view of the 2020 Fard Fusion. </gallery> 541f3849b0cee1ce050152a5fa2ae1d9f60a21ff 925 912 2022-08-26T17:54:10Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard Fusion |image=Fusion_Front.jpg |make=Fard |type=Sedan |price=$32,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fusion_(Americas)#Second_generation_(2013) |rlname=Ford Fusion (2nd gen.) |limited=0 |electric=0 }} The 2020 Fard Fusion is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fusion has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=240|tqval=285|whval=3525|spdval=110|drv=FWD}} {{Maxstats|hpval=1121|tqval=1314|whval=3025|spdval=188}} ==Gallery== <gallery> File:Fusion_Rear.jpg|Rear view of the 2020 Fard Fusion. </gallery> ada76fc1b8bbe47144940d55051515db8c655503 2021 Edison Model S 0 638 913 2022-08-26T08:45:33Z S30Z 2 Created page with " {{Carinfo |name=2021 Edison Model S |image=Model_S_Front.jpg |make=Edison |type=Sedan |price=$105,888 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=1 }} The 2021 Edison Model S is a four door sedan produced by [[Edison]]. It can be purchased from the dealership for $105,888. ==Stats== The Model S has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adju..." wikitext text/x-wiki {{Carinfo |name=2021 Edison Model S |image=Model_S_Front.jpg |make=Edison |type=Sedan |price=$105,888 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=1 }} The 2021 Edison Model S is a four door sedan produced by [[Edison]]. It can be purchased from the dealership for $105,888. ==Stats== The Model S has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=778|tqval=841|whval=4941|spdval=166|drv=AWD}} {{Maxstats|hpval=778|tqval=841|whval=4941|spdval=166}} ==Gallery== <gallery> File:Model_S_Rear.jpg|Rear view of the 2021 Edison Model S. </gallery> a651778594199f6d469a4197f7970ecb8911ec8b 926 913 2022-08-26T17:55:00Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Edison Model S |image=Model_S_Front.jpg |make=Edison |type=Sedan |price=$105,888 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Model_S |rlname=Tesla Model S |limited=0 |electric=1 }} The 2021 Edison Model S is a four door sedan produced by [[Edison]]. It can be purchased from the dealership for $105,888. ==Stats== The Model S has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=778|tqval=841|whval=4941|spdval=166|drv=AWD}} {{Maxstats|hpval=778|tqval=841|whval=4941|spdval=166}} ==Gallery== <gallery> File:Model_S_Rear.jpg|Rear view of the 2021 Edison Model S. </gallery> aabe4c6f7664fb3effd148ae11c66cb3d458ffe0 2020 Muaraci-AGM GT-63s 0 639 914 2022-08-26T08:45:57Z S30Z 2 Created page with " {{Carinfo |name=2020 Muaraci-AGM GT-63s |image=GT63_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$162,530 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Muaraci-AGM GT-63s is a four door sedan produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $162,530. ==Stats== The GT-63s has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=627|tqval=613|whval=4508|spdval=1..." wikitext text/x-wiki {{Carinfo |name=2020 Muaraci-AGM GT-63s |image=GT63_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$162,530 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Muaraci-AGM GT-63s is a four door sedan produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $162,530. ==Stats== The GT-63s has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=627|tqval=613|whval=4508|spdval=180|drv=AWD}} {{Maxstats|hpval=1182|tqval=1407|whval=4008|spdval=215}} ==Gallery== <gallery> File:GT63_Rear.jpg|Rear view of the 2020 Muaraci-AGM GT-63s. </gallery> 2898fe8318b5b8053645d88b62190577d22e4ac4 927 914 2022-08-26T17:55:49Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Muaraci-AGM GT-63s |image=GT63_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$162,530 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_GT_4-Door_Coup%C3%A9 |rlname=Mercedes-AMG GT 63 S |limited=0 |electric=0 }} The 2020 Muaraci-AGM GT-63s is a four door sedan produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $162,530. ==Stats== The GT-63s has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=627|tqval=613|whval=4508|spdval=180|drv=AWD}} {{Maxstats|hpval=1182|tqval=1407|whval=4008|spdval=215}} ==Gallery== <gallery> File:GT63_Rear.jpg|Rear view of the 2020 Muaraci-AGM GT-63s. </gallery> f7674815fde3479c5b91997b7699f6ceaadb0167 2020 Luxuss LS500 0 640 915 2022-08-26T08:46:16Z S30Z 2 Created page with " {{Carinfo |name=2020 Luxuss LS500 |image=LS500_Front.jpg |make=Luxuss |type=Sedan |price=$75,450 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Luxuss LS500 is a four door sedan produced by [[Luxuss]]. It can be purchased from the dealership for $75,450. ==Stats== The LS500 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=415|tqval=432|whval=4707|spdval=125|drv=AWD}} {{Maxstats|hp..." wikitext text/x-wiki {{Carinfo |name=2020 Luxuss LS500 |image=LS500_Front.jpg |make=Luxuss |type=Sedan |price=$75,450 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Luxuss LS500 is a four door sedan produced by [[Luxuss]]. It can be purchased from the dealership for $75,450. ==Stats== The LS500 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=415|tqval=432|whval=4707|spdval=125|drv=AWD}} {{Maxstats|hpval=1016|tqval=1155|whval=4207|spdval=193}} ==Gallery== <gallery> File:LS500_Rear.jpg|Rear view of the 2020 Luxuss LS500. </gallery> 4f06eafeb248a6a370c51d91f8b3af9bcc1107f1 928 915 2022-08-26T17:56:48Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Luxuss LS500 |image=LS500_Front.jpg |make=Luxuss |type=Sedan |price=$75,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lexus_LS#Fifth_generation_(XF50;_2017) |rlname=Lexus LS (5th gen.) |limited=0 |electric=0 }} The 2020 Luxuss LS500 is a four door sedan produced by [[Luxuss]]. It can be purchased from the dealership for $75,450. ==Stats== The LS500 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=415|tqval=432|whval=4707|spdval=125|drv=AWD}} {{Maxstats|hpval=1016|tqval=1155|whval=4207|spdval=193}} ==Gallery== <gallery> File:LS500_Rear.jpg|Rear view of the 2020 Luxuss LS500. </gallery> 5dd3d7b23b8473fa40bbb3f0781542309b1602ab 2019 Owdi A6 0 641 916 2022-08-26T08:46:37Z S30Z 2 Created page with " {{Carinfo |name=2019 Owdi A6 |image=A6_Front.jpg |make=Owdi |type=Sedan |price=$54,900 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2019 Owdi A6 is a four door sedan produced by [[Owdi]]. It can be purchased from the dealership for $54,900. ==Stats== The A6 has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=247|tqval=368|whval=4028|spdval=126|drv=AWD}} {{Maxstats|hpval=835|tqval=1039|w..." wikitext text/x-wiki {{Carinfo |name=2019 Owdi A6 |image=A6_Front.jpg |make=Owdi |type=Sedan |price=$54,900 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2019 Owdi A6 is a four door sedan produced by [[Owdi]]. It can be purchased from the dealership for $54,900. ==Stats== The A6 has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=247|tqval=368|whval=4028|spdval=126|drv=AWD}} {{Maxstats|hpval=835|tqval=1039|whval=3523|spdval=230}} ==Gallery== <gallery> File:A6_Rear.jpg|Rear view of the 2019 Owdi A6. </gallery> ea8f6316fdee840d4ccd9c88cecf8b8c12497b3b 2005 Mitsabisha Lancer Evolution 0 642 917 2022-08-26T08:47:02Z S30Z 2 Created page with " {{Carinfo |name=2005 Mitsabisha Lancer Evolution |image=Evo8_Front.jpg |make=Mitsabisha |type=Sedan |price=$39,900 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2005 Mitsabisha Lancer Evolution is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $39,900. ==Stats== The Lancer Evolution has 5 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=285|tqval=2..." wikitext text/x-wiki {{Carinfo |name=2005 Mitsabisha Lancer Evolution |image=Evo8_Front.jpg |make=Mitsabisha |type=Sedan |price=$39,900 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2005 Mitsabisha Lancer Evolution is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $39,900. ==Stats== The Lancer Evolution has 5 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=285|tqval=266|whval=3274|spdval=156|drv=AWD}} {{Maxstats|hpval=927|tqval=914|whval=2774|spdval=211}} ==Gallery== <gallery> File:Evo8_Rear.jpg|Rear view of the 2005 Mitsabisha Lancer Evolution. </gallery> f9c45d2221dfe763581dd3a492c8c213de2d8a05 929 917 2022-08-26T17:57:29Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2005 Mitsabisha Lancer Evolution |image=Evo8_Front.jpg |make=Mitsabisha |type=Sedan |price=$39,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution#Evolution_VIII |rlname=Mitsubishi Lancer Evolution VIII |limited=0 |electric=0 }} The 2005 Mitsabisha Lancer Evolution is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $39,900. ==Stats== The Lancer Evolution has 5 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=285|tqval=266|whval=3274|spdval=156|drv=AWD}} {{Maxstats|hpval=927|tqval=914|whval=2774|spdval=211}} ==Gallery== <gallery> File:Evo8_Rear.jpg|Rear view of the 2005 Mitsabisha Lancer Evolution. </gallery> 77e5d83a6de4f5748fd386d45386ac2c9aab6462 2019 BNW 530i 0 643 918 2022-08-26T08:47:22Z S30Z 2 Created page with " {{Carinfo |name=2019 BNW 530i |image=530i_Front.jpg |make=BNW |type=Sedan |price=$53,400 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2019 BNW 530i is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $53,400. ==Stats== The 530i has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=226|tqval=273|whval=3746|spdval=128|drv=RWD}} {{Maxstats|hpval=835|tqval=10..." wikitext text/x-wiki {{Carinfo |name=2019 BNW 530i |image=530i_Front.jpg |make=BNW |type=Sedan |price=$53,400 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2019 BNW 530i is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $53,400. ==Stats== The 530i has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=226|tqval=273|whval=3746|spdval=128|drv=RWD}} {{Maxstats|hpval=835|tqval=1031|whval=3246|spdval=215}} ==Gallery== <gallery> File:530i_Rear.jpg|Rear view of the 2019 BNW 530i. </gallery> d3a7d4cccc6876a86a5a5b09afc09fd0ef618d7d 930 918 2022-08-26T17:58:12Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 BNW 530i |image=530i_Front.jpg |make=BNW |type=Sedan |price=$53,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_5_Series_(G30) |rlname=BMW 5 Series (7th gen.) |limited=0 |electric=0 }} The 2019 BNW 530i is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $53,400. ==Stats== The 530i has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=226|tqval=273|whval=3746|spdval=128|drv=RWD}} {{Maxstats|hpval=835|tqval=1031|whval=3246|spdval=215}} ==Gallery== <gallery> File:530i_Rear.jpg|Rear view of the 2019 BNW 530i. </gallery> 55751b68c1fa1ff0ed627dac2581cb378b54dea5 2021 Rolls Rayce Ghost 0 644 919 2022-08-26T08:47:54Z S30Z 2 Created page with " {{Carinfo |name=2021 Rolls Rayce Ghost |image=Ghost_Front.jpg |make=Rolls Rayce |type=Sedan |price=$311,900 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2021 Rolls Rayce Ghost is a four door sedan produced by [[Rolls Rayce]]. It can be purchased from the dealership for $311,900. ==Stats== The Ghost has 4 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=563|tqval=627|whval=5445|spdval=154|d..." wikitext text/x-wiki {{Carinfo |name=2021 Rolls Rayce Ghost |image=Ghost_Front.jpg |make=Rolls Rayce |type=Sedan |price=$311,900 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2021 Rolls Rayce Ghost is a four door sedan produced by [[Rolls Rayce]]. It can be purchased from the dealership for $311,900. ==Stats== The Ghost has 4 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=563|tqval=627|whval=5445|spdval=154|drv=RWD}} {{Maxstats|hpval=1165|tqval=1450|whval=4989|spdval=206}} ==Gallery== <gallery> File:Ghost_Rear.jpg|Rear view of the 2021 Rolls Rayce Ghost. </gallery> dc03eac51ed5cb941425940781cc212b3465a949 931 919 2022-08-26T17:59:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Rolls Rayce Ghost |image=Ghost_Front.jpg |make=Rolls Rayce |type=Sedan |price=$311,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Ghost#Second_generation |rlname=Rolls Royce Ghost (2nd gen.) |limited=0 |electric=0 }} The 2021 Rolls Rayce Ghost is a four door sedan produced by [[Rolls Rayce]]. It can be purchased from the dealership for $311,900. ==Stats== The Ghost has 4 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=563|tqval=627|whval=5445|spdval=154|drv=RWD}} {{Maxstats|hpval=1165|tqval=1450|whval=4989|spdval=206}} ==Gallery== <gallery> File:Ghost_Rear.jpg|Rear view of the 2021 Rolls Rayce Ghost. </gallery> 910f88d6268bd742830311cb20f0b582ef485c14 2020 Toyoto Avalon XLE 0 645 920 2022-08-26T08:48:13Z S30Z 2 Created page with " {{Carinfo |name=2020 Toyoto Avalon XLE |image=Avalon_Front.jpg |make=Toyoto |type=Sedan |price=$36,500 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Toyoto Avalon XLE is a four door sedan produced by [[Toyoto]]. It can be purchased from the dealership for $36,500. ==Stats== The Ghost has 5 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3670|spdval=130|drv=FWD}} {{..." wikitext text/x-wiki {{Carinfo |name=2020 Toyoto Avalon XLE |image=Avalon_Front.jpg |make=Toyoto |type=Sedan |price=$36,500 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2020 Toyoto Avalon XLE is a four door sedan produced by [[Toyoto]]. It can be purchased from the dealership for $36,500. ==Stats== The Ghost has 5 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3670|spdval=130|drv=FWD}} {{Maxstats|hpval=941|tqval=786|whval=3070|spdval=199}} ==Gallery== <gallery> File:Avalon_Rear.jpg|Rear view of the 2020 Toyoto Avalon XLE. </gallery> a2724fe1ac5f98a0f7195304f0ab569bb5760891 932 920 2022-08-26T17:59:46Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Toyoto Avalon XLE |image=Avalon_Front.jpg |make=Toyoto |type=Sedan |price=$36,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Avalon#Fifth_generation_(XX50;_2018) |rlname=Toyota Avalon (5th gen.) |limited=0 |electric=0 }} The 2020 Toyoto Avalon XLE is a four door sedan produced by [[Toyoto]]. It can be purchased from the dealership for $36,500. ==Stats== The Ghost has 5 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3670|spdval=130|drv=FWD}} {{Maxstats|hpval=941|tqval=786|whval=3070|spdval=199}} ==Gallery== <gallery> File:Avalon_Rear.jpg|Rear view of the 2020 Toyoto Avalon XLE. </gallery> cbd833512573b454dd8090921fd5250cabd9b54e 2022 Owdi E-Tron GT RS 0 646 921 2022-08-26T08:48:33Z S30Z 2 Created page with " {{Carinfo |name=2022 Owdi E-Tron GT RS |image=E-Tron_GT_Front.jpg |make=Owdi |type=Sedan |price=$140,995 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=1 }} The 2022 Owdi E-Tron GT RS is a four door sedan produced by [[Owdi]]. It can be purchased from the dealership for $140,995. ==Stats== The E-Tron GT RS has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cann..." wikitext text/x-wiki {{Carinfo |name=2022 Owdi E-Tron GT RS |image=E-Tron_GT_Front.jpg |make=Owdi |type=Sedan |price=$140,995 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=1 }} The 2022 Owdi E-Tron GT RS is a four door sedan produced by [[Owdi]]. It can be purchased from the dealership for $140,995. ==Stats== The E-Tron GT RS has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=637|tqval=612|whval=5335|spdval=175|drv=AWD}} {{Maxstats|hpval=637|tqval=612|whval=4835|spdval=175}} ==Gallery== <gallery> File:E-Tron_GT_Rear.jpg|Rear view of the 2022 Owdi E-Tron GT RS. </gallery> 0f3ba6102e6341ecff68b84eaaa509772f6f7f5a 933 921 2022-08-26T18:02:23Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Owdi E-Tron GT RS |image=E-Tron_GT_Front.jpg |make=Owdi |type=Sedan |price=$140,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_e-tron_GT |rlname=Audi RS e-tron GT |limited=0 |electric=1 }} The 2022 Owdi E-Tron GT RS is a four door sedan produced by [[Owdi]]. It can be purchased from the dealership for $140,995. ==Stats== The E-Tron GT RS has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=637|tqval=612|whval=5335|spdval=175|drv=AWD}} {{Maxstats|hpval=637|tqval=612|whval=4835|spdval=175}} ==Gallery== <gallery> File:E-Tron_GT_Rear.jpg|Rear view of the 2022 Owdi E-Tron GT RS. </gallery> c7ac50968d45ee24a4607932c0928e5d7187e858 2016 Fard Taurus 0 647 922 2022-08-26T08:48:56Z S30Z 2 Created page with " {{Carinfo |name=2016 Fard Taurus |image=Taurus_Front.jpg |make=Fard |type=Sedan |price=$24,500 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2016 Fard Taurus is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $24,500. ==Stats== The Taurus has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} {{Maxstats|hpval=..." wikitext text/x-wiki {{Carinfo |name=2016 Fard Taurus |image=Taurus_Front.jpg |make=Fard |type=Sedan |price=$24,500 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2016 Fard Taurus is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $24,500. ==Stats== The Taurus has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} {{Maxstats|hpval=1361|tqval=1512|whval=3843|spdval=191}} ==Gallery== <gallery> File:Taurus_Rear.jpg|Rear view of the 2016 Fard Taurus. </gallery> 52beba07d91e5e657fa0a0b6ef0a9c799b253392 934 922 2022-08-26T18:10:24Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Taurus |image=Taurus_Front.jpg |make=Fard |type=Sedan |price=$24,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation) |rlname=Ford Taurus (6th gen.) |limited=0 |electric=0 }} The 2016 Fard Taurus is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $24,500. ==Stats== The Taurus has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} {{Maxstats|hpval=1361|tqval=1512|whval=3843|spdval=191}} ==Gallery== <gallery> File:Taurus_Rear.jpg|Rear view of the 2016 Fard Taurus. </gallery> 4ff517e31ba1f9a53663c9afe35a6c9ce0e12ea1 2019 BNW M5 0 648 923 2022-08-26T08:49:29Z S30Z 2 Created page with " {{Carinfo |name=2019 BNW M5 |image=19M5_Front.jpg |make=BNW |type=Sedan |price=$103,695 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2019 BNW M5 is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $103,695. ==Stats== The M5 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=600|tqval=553|whval=4112|spdval=176|drv=AWD}} {{Maxstats|hpval=1141|tqval=1209|..." wikitext text/x-wiki {{Carinfo |name=2019 BNW M5 |image=19M5_Front.jpg |make=BNW |type=Sedan |price=$103,695 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2019 BNW M5 is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $103,695. ==Stats== The M5 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=600|tqval=553|whval=4112|spdval=176|drv=AWD}} {{Maxstats|hpval=1141|tqval=1209|whval=3612|spdval=209}} ==Gallery== <gallery> File:19M5_Rear.jpg|Rear view of the 2019 BNW M5. </gallery> c6018cd073d32b472f2677b1d4523f913b22acd0 936 923 2022-08-26T18:57:02Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 BNW M5 |image=19M5_Front.jpg |make=BNW |type=Sedan |price=$103,695 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M5#F90_M5_(2017%E2%80%93present) |rlname=BMW M5 (F90) |limited=0 |electric=0 }} The 2019 BNW M5 is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $103,695. ==Stats== The M5 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=600|tqval=553|whval=4112|spdval=176|drv=AWD}} {{Maxstats|hpval=1141|tqval=1209|whval=3612|spdval=209}} ==Gallery== <gallery> File:19M5_Rear.jpg|Rear view of the 2019 BNW M5. </gallery> d9420abff10475966137d667a1cae4356595f01a 2022 Owdi RS6 Avant 0 649 924 2022-08-26T08:49:51Z S30Z 2 Created page with " {{Carinfo |name=2022 Owdi RS6 Avant |image=RS6Avant_Front.jpg |make=Owdi |type=Sedan |price=$124,895 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2022 Owdi RS6 Avant is a five door wagon produced by [[Owdi]]. It can be purchased from the dealership for $124,895. ==Stats== The RS6 Avant has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=591|tqval=590|whval=4960|spdval=187|drv=AWD}} {{Ma..." wikitext text/x-wiki {{Carinfo |name=2022 Owdi RS6 Avant |image=RS6Avant_Front.jpg |make=Owdi |type=Sedan |price=$124,895 |avail=Can be purchased at the dealership |rllink=To be added |rlname=To be added |limited=0 |electric=0 }} The 2022 Owdi RS6 Avant is a five door wagon produced by [[Owdi]]. It can be purchased from the dealership for $124,895. ==Stats== The RS6 Avant has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=591|tqval=590|whval=4960|spdval=187|drv=AWD}} {{Maxstats|hpval=1192|tqval=1408|whval=4460|spdval=235}} ==Gallery== <gallery> File:RS6Avant_Rear.jpg|Rear view of the 2022 Owdi RS6 Avant. </gallery> 8601134db83c6aa056d3b71549d050786a47b500 935 924 2022-08-26T18:11:52Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Owdi RS6 Avant |image=RS6Avant_Front.jpg |make=Owdi |type=Sedan |price=$124,895 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_RS_6#C8_(Typ_5G,_2019%E2%80%93present) |rlname=Audi RS6 Avant (4th gen.) |limited=0 |electric=0 }} The 2022 Owdi RS6 Avant is a five door wagon produced by [[Owdi]]. It can be purchased from the dealership for $124,895. ==Stats== The RS6 Avant has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=591|tqval=590|whval=4960|spdval=187|drv=AWD}} {{Maxstats|hpval=1192|tqval=1408|whval=4460|spdval=235}} ==Gallery== <gallery> File:RS6Avant_Rear.jpg|Rear view of the 2022 Owdi RS6 Avant. </gallery> 21e0793ee4db4e55c1335aa47661df5ba2334191 2009 Naan 350Z 0 650 937 2022-08-26T19:31:06Z Cheemsthethird 10 Created page with "{{Carinfo|name=2009 Naan 350z|image=350z_front.jpg|make=Naan|type=Coupe|price=$28,510|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z|rlname=Nissan 350z (Z33)|limited=0|electric=0}} The 2009 Naan 350z is a two-seater sportscar produced by [[Naan]]. It can be purchased at the dealership for $28,510. == Stats == The 350z has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,369|spdval..." wikitext text/x-wiki {{Carinfo|name=2009 Naan 350z|image=350z_front.jpg|make=Naan|type=Coupe|price=$28,510|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z|rlname=Nissan 350z (Z33)|limited=0|electric=0}} The 2009 Naan 350z is a two-seater sportscar produced by [[Naan]]. It can be purchased at the dealership for $28,510. == Stats == The 350z has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,369|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,869|spdval=212}} == Gallery == <gallery> File:350z rear.jpg|The rear view of the 2009 Naan 350z. </gallery> f3d33d3c1bdc43ca6c241e8307cdee9e37208d32 2001 Toyoto MR2 0 651 938 2022-08-26T19:40:06Z Cheemsthethird 10 Created page with "{{Carinfo|name=2001 Toyoto MR2|image=mr2_front.jpg|make=Toyoto|type=Coupe|price=$7,999|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Toyota_MR2#Third_generation_(W30;_1999–2007)|rlname=Toyota MR2 Spyder (W30)|limited=0|electric=0}} The 2001 Toyoto MR2 is a two-door mid-engined sportscar produced by [[Toyoto]]. It can be purchased at the dealership for $7,999. == Stats == The MR2 has two seats and a maximum fuel capacity of 13 gallons..." wikitext text/x-wiki {{Carinfo|name=2001 Toyoto MR2|image=mr2_front.jpg|make=Toyoto|type=Coupe|price=$7,999|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Toyota_MR2#Third_generation_(W30;_1999–2007)|rlname=Toyota MR2 Spyder (W30)|limited=0|electric=0}} The 2001 Toyoto MR2 is a two-door mid-engined sportscar produced by [[Toyoto]]. It can be purchased at the dealership for $7,999. == Stats == The MR2 has two seats and a maximum fuel capacity of 13 gallons. {{Stockstats|hpval=138|tqval=125|whval=2,195|spdval=119|drv=RWD}}{{Maxstats|hpval=910|tqval=753|whval=1,695|spdval=160}} == Gallery == <gallery> File:Mr2 rear.jpg|The rear view of the 2001 Toyoto MR2. </gallery> ae09ba3fe37598d6f23380c040f31cbbe7b50e79 Muaraci-Bens 0 652 939 2022-08-26T19:45:54Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Muaraci-Bens|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz|rlname=Mercedes-Benz}} Muaraci-Bens is a fictional luxury and commercial vehicle manufacture in Southwest Florida. It is based on [https://www.mercedes-benz.com/en/ Mercedes-Benz]. == Vehicles by Muaraci-Bens == You can find all vehicles by Muaraci-Bens [[:Category:Muaraci-Bens|here]]." wikitext text/x-wiki {{Makeinfo|makename=Muaraci-Bens|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz|rlname=Mercedes-Benz}} Muaraci-Bens is a fictional luxury and commercial vehicle manufacture in Southwest Florida. It is based on [https://www.mercedes-benz.com/en/ Mercedes-Benz]. == Vehicles by Muaraci-Bens == You can find all vehicles by Muaraci-Bens [[:Category:Muaraci-Bens|here]]. cb78f1f28291308fa6d554eb788255d20d0450c2 Category:Muaraci-Bens 14 653 940 2022-08-26T19:46:37Z Cheemsthethird 10 Created page with "All Muaraci-Bens vehicles in Southwest Florida." wikitext text/x-wiki All Muaraci-Bens vehicles in Southwest Florida. 5624e1b3347c0a2a09af942194c8ba2ecb678038 2019 Muaraci-Bens AGM S-Class Coupe 0 654 941 2022-08-26T20:07:14Z Cheemsthethird 10 Created page with "{{Carinfo|name=2019 Muaraci-Bens AGM S-Class Coupe|image=sclasscoupe_front.jpg|make=Muaraci-Bens|type=Coupe|price=$169,450|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(C217)#S_65_AMG|rlname=Mercedes-AMG S 63 AMG Coupe (C217)|limited=0|electric=0}} The 2019 Muaraci-Bens AGM S-Class Coupe is a high-performance luxury 2-door coupe produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $169,450. =..." wikitext text/x-wiki {{Carinfo|name=2019 Muaraci-Bens AGM S-Class Coupe|image=sclasscoupe_front.jpg|make=Muaraci-Bens|type=Coupe|price=$169,450|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(C217)#S_65_AMG|rlname=Mercedes-AMG S 63 AMG Coupe (C217)|limited=0|electric=0}} The 2019 Muaraci-Bens AGM S-Class Coupe is a high-performance luxury 2-door coupe produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $169,450. == Stats == The S-Class Coupe has 4 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=603|tqval=665|whval=4,685|spdval=185|drv=AWD}}{{Maxstats|hpval=1,178|tqval=1,036|whval=4,185|spdval=234}} == Gallery == <gallery> File:Sclasscoupe rear.jpg|The rear view of the AGM S-Class Coupe. </gallery> b7dd4cc485a2df2f7ff5f98a01934ae9d23022e7 945 941 2022-08-26T20:33:58Z Cheemsthethird 10 wikitext text/x-wiki {{Carinfo|name=2019 Muaraci-Bens AGM S-Class Coupe|image=sclasscoupe_front.jpg|make=Muaraci-Bens|type=Coupe|price=$169,450|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(C217)#S_65_AMG|rlname=Mercedes-AMG S 63 AMG Coupe (C217)|limited=0|electric=0}} The 2019 Muaraci-Bens AGM S-Class Coupe is a high-performance luxury 2-door coupe produced by [[Muaraci-Bens]]. It is the coupe variant of the [[2019 Muaraci-Bens AGM S-Class Sedan|AGM S-Class Sedan]]. It can be purchased from the dealership for $169,450. == Stats == The S-Class Coupe has 4 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=603|tqval=665|whval=4,685|spdval=185|drv=AWD}}{{Maxstats|hpval=1,178|tqval=1,036|whval=4,185|spdval=234}} == Gallery == <gallery> File:Sclasscoupe rear.jpg|The rear view of the AGM S-Class Coupe. </gallery> 406e57d226569aef8d14631603ff90e1be9a9318 File:Sclasssedan front.jpg 6 655 942 2022-08-26T20:08:23Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sclasssedan rear.jpg 6 656 943 2022-08-26T20:08:42Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Muaraci-Bens AGM S-Class Sedan 0 657 944 2022-08-26T20:32:01Z Cheemsthethird 10 Created page with "{{Carinfo|name=2019 Muaraci-Bens AGM S-Class Sedan|image=sclasssedan_front.jpg|make=Muaraci-Bens|type=Sedan|price=$144,700|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(W222)|rlname=Mercedes-Benz S 63 AMG 4MATIC (W222)|limited=0|electric=0}} The 2019 Muaraci-Bens AGM S-Class Sedan is a high-performance luxury sedan produced by [[Muaraci-Bens]]. It can be purchased at the dealership for $144,700. It also has a 201..." wikitext text/x-wiki {{Carinfo|name=2019 Muaraci-Bens AGM S-Class Sedan|image=sclasssedan_front.jpg|make=Muaraci-Bens|type=Sedan|price=$144,700|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(W222)|rlname=Mercedes-Benz S 63 AMG 4MATIC (W222)|limited=0|electric=0}} The 2019 Muaraci-Bens AGM S-Class Sedan is a high-performance luxury sedan produced by [[Muaraci-Bens]]. It can be purchased at the dealership for $144,700. It also has a [[2019 Muaraci-Bens AGM S-Class Coupe|coupe]] variant. == Stats == The S-Class has 5 seats and the maximum fuel capacity of 21 gallons. {{Stockstats|hpval=603|tqval=664|whval=4,343|spdval=187|drv=AWD}}{{Maxstats|hpval=1,178|tqval=1,036|whval=3,843|spdval=225}} == Gallery == <gallery> File:Sclasssedan rear.jpg|The rear view of the AGM S-Class Sedan. </gallery> 0c08394aad6cab669236cf55a4408cdc3c24e01d 2011 Handa CR-Z 0 658 946 2022-08-26T20:45:41Z Cheemsthethird 10 Created page with "{{Carinfo|name=2011 Handa CR-Z|image=crz_front.jpg|make=Handa|type=Coupe|price=$7,604|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Honda_CR-Z|rlname=Honda CR-Z (ZF1)|limited=0|electric=0}} The 2011 Handa CR-Z is a two-door sport compact hybrid coupe produced by [[Handa]]. It can be purchased from the dealership for $7,604. == Stats == The CR-Z has two seats and a maximum fuel capacity of 13 gallons. {{Stockstats|hpval=113|tqval=107|wh..." wikitext text/x-wiki {{Carinfo|name=2011 Handa CR-Z|image=crz_front.jpg|make=Handa|type=Coupe|price=$7,604|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Honda_CR-Z|rlname=Honda CR-Z (ZF1)|limited=0|electric=0}} The 2011 Handa CR-Z is a two-door sport compact hybrid coupe produced by [[Handa]]. It can be purchased from the dealership for $7,604. == Stats == The CR-Z has two seats and a maximum fuel capacity of 13 gallons. {{Stockstats|hpval=113|tqval=107|whval=2,579|spdval=120|drv=FWD}}{{Maxstats|hpval=858|tqval=791|whval=2,029|spdval=200}} == Gallery == <gallery> File:Crz rear.jpg|The rear view of the CR-Z. </gallery> 1c054137e229ea844665687aea7a58e8fc78ddc4 Chavy 0 412 947 624 2022-08-26T20:48:08Z Cheemsthethird 10 /* Vehicles by Chavy */ wikitext text/x-wiki {{Makeinfo|makename=Chavy|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Chevrolet|rlname=Chevrolet (Chevy)}} Chavy is a fictional car manufacture in Southwest Florida. It is based on [https://www.chevrolet.com Chevrolet (Chevy)]. == Vehicles by Chavy == You can find a list of all vehicles by Chavy [[:Category:Chavy|here]]. 9aa4fd8e36b5752c1e8843ab86c58fe4daf6267d Alpha 0 659 948 2022-08-26T20:55:08Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Alpha|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Alfa_Romeo|rlname=Alfa Romeo Automobiles S.p.A.}} Alpha is a fictional Italian luxury car manufacture in Southwest Florida. It is based on [https://www.alfaromeo.com/choose-your-market Alfa-Romeo]. == Vehicles by Alpha == You can find all vehicles by Alpha [[:Category:Alpha|here]]." wikitext text/x-wiki {{Makeinfo|makename=Alpha|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Alfa_Romeo|rlname=Alfa Romeo Automobiles S.p.A.}} Alpha is a fictional Italian luxury car manufacture in Southwest Florida. It is based on [https://www.alfaromeo.com/choose-your-market Alfa-Romeo]. == Vehicles by Alpha == You can find all vehicles by Alpha [[:Category:Alpha|here]]. 6f5e20448879793c2a2319a0e2aed941f6aae114 Category:Alpha 14 660 949 2022-08-26T20:55:39Z Cheemsthethird 10 Created page with "All Alpha vehicles in Southwest Florida." wikitext text/x-wiki All Alpha vehicles in Southwest Florida. 255b084ccdaddd0a20b8e5a7e0146560cc36440b Atone-Mira 0 661 950 2022-08-26T20:58:25Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Atone-Mira|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Aston_Martin|rlname=Aston Martin}} Atone-Mira is a fictional English manufacture of luxury sports cars and grand tourers in Southwest Florida. It is based on [https://www.astonmartin.com/en/welcome Aston Martin]. == Vehicles by Atone-Mira == You can find all vehicles by Atone-Mira [[:Category:Atone Mira|here]]." wikitext text/x-wiki {{Makeinfo|makename=Atone-Mira|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Aston_Martin|rlname=Aston Martin}} Atone-Mira is a fictional English manufacture of luxury sports cars and grand tourers in Southwest Florida. It is based on [https://www.astonmartin.com/en/welcome Aston Martin]. == Vehicles by Atone-Mira == You can find all vehicles by Atone-Mira [[:Category:Atone Mira|here]]. c56ed6c1225a9012c4bbba944fcc5c3d88c4f2e4 951 950 2022-08-26T20:59:07Z Cheemsthethird 10 /* Vehicles by Atone-Mira */ wikitext text/x-wiki {{Makeinfo|makename=Atone-Mira|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Aston_Martin|rlname=Aston Martin}} Atone-Mira is a fictional English manufacture of luxury sports cars and grand tourers in Southwest Florida. It is based on [https://www.astonmartin.com/en/welcome Aston Martin]. == Vehicles by Atone-Mira == You can find all vehicles by Atone-Mira [[:Category:Atone-Mira|here]]. dce28604294dc4ae556f2582dd73cde90898f33f Category:Atone-Mira 14 662 952 2022-08-26T20:59:36Z Cheemsthethird 10 Created page with "All Atone-Mira vehicles in Southwest Florida." wikitext text/x-wiki All Atone-Mira vehicles in Southwest Florida. 3765b73e275be2ca527c3cfba733621648c0ed66 2021 Edison Model S 0 638 953 926 2022-08-26T21:02:53Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Edison Model S |image=Model_S_Front.jpg |make=Edison |type=Sedan |price=$105,888 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Model_S |rlname=Tesla Model S |limited=0 |electric=1 }} The 2021 Edison Model S is a four door sedan produced by [[Edison]]. It can be purchased from the dealership for $105,888. ==Stats== The Model S has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=778|tqval=841|whval=4941|spdval=166|drv=AWD}} {{Maxstats|hpval=778|tqval=841|whval=4441|spdval=166}} ==Gallery== <gallery> File:Model_S_Rear.jpg|Rear view of the 2021 Edison Model S. </gallery> d106f0967479c6a75dd46be85454a0cb0c298d63 File:Stinger Front.jpg 6 663 954 2022-08-26T21:57:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stinger Rear.jpg 6 664 955 2022-08-26T21:57:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pullman Front.jpg 6 667 958 2022-08-26T21:58:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pullman Rear.jpg 6 668 959 2022-08-26T21:58:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CT5 Front.jpg 6 669 960 2022-08-26T21:58:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CT5 Rear.jpg 6 670 961 2022-08-26T21:58:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Taycan Front.jpg 6 671 962 2022-08-26T21:58:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Taycan Rear.jpg 6 672 963 2022-08-26T21:58:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SS Rear.jpg 6 673 964 2022-08-26T21:59:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SS Front.jpg 6 674 965 2022-08-26T21:59:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:13M5 Rear.jpg 6 675 966 2022-08-26T21:59:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:13M5 Front.jpg 6 676 967 2022-08-26T21:59:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerBW Rear.jpg 6 677 968 2022-08-26T21:59:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChargerBW Front.jpg 6 678 969 2022-08-26T21:59:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CrownVic Rear.jpg 6 679 970 2022-08-26T22:00:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CrownVic Front.jpg 6 680 971 2022-08-26T22:00:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Jetta Rear.jpg 6 681 972 2022-08-26T22:00:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Jetta Front.jpg 6 682 973 2022-08-26T22:00:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A7 Rear.jpg 6 683 974 2022-08-26T22:01:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A7 Front.jpg 6 684 975 2022-08-26T22:01:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Prius Rear.jpg 6 685 976 2022-08-26T22:01:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Prius Front.jpg 6 686 977 2022-08-26T22:01:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GiuliaQuad Rear.jpg 6 687 978 2022-08-26T22:02:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GiuliaQuad Front.jpg 6 688 979 2022-08-26T22:02:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cruze Rear.jpg 6 689 980 2022-08-26T22:02:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cruze Front.jpg 6 690 981 2022-08-26T22:02:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2015 Chavy Cruze 0 691 982 2022-08-26T22:03:05Z S30Z 2 Created page with " {{Carinfo |name=2015 Chavy Cruze |image=Cruze_Front.jpg |make=Chavy |type=Sedan |price=$17,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Cruze#First_generation_(J300;_2008) |rlname=Chevrolet Cruze (1st gen.) |limited=0 |electric=0 }} The 2015 Chavy Cruze is a four door sedan produced by [[Chavy]]. It can be purchased from the dealership for $17,990. ==Stats== The Cruze has 5 seats and a fuel capacity of 14 gallons. {{S..." wikitext text/x-wiki {{Carinfo |name=2015 Chavy Cruze |image=Cruze_Front.jpg |make=Chavy |type=Sedan |price=$17,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Cruze#First_generation_(J300;_2008) |rlname=Chevrolet Cruze (1st gen.) |limited=0 |electric=0 }} The 2015 Chavy Cruze is a four door sedan produced by [[Chavy]]. It can be purchased from the dealership for $17,990. ==Stats== The Cruze has 5 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=138|tqval=148|whval=3223|spdval=111|drv=FWD}} {{Maxstats|hpval=923|tqval=1196|whval=2723|spdval=174}} ==Gallery== <gallery> File:Cruze_Rear.jpg|Rear view of the 2015 Chavy Cruze. </gallery> 9e54d71aff349df950485e018cf3b7460146ea82 2021 Alpha Giulia Quadrifolgio 0 692 983 2022-08-26T22:03:22Z S30Z 2 Created page with " {{Carinfo |name=2021 Alpha Giulia Quadrifolgio |image=GiuliaQuad_Front.jpg |make=Alpha |type=Sedan |price=$75,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_Giulia_(952)#Quadrifoglio |rlname=Alfa Romeo Giulia Quadrifoglio |limited=0 |electric=0 }} The 2021 Alpha Giulia Quadrifolgio is a four door sedan produced by [[Alpha]]. It can be purchased from the dealership for $75,250. ==Stats== The Giulia Quadrifolgio has 5 sea..." wikitext text/x-wiki {{Carinfo |name=2021 Alpha Giulia Quadrifolgio |image=GiuliaQuad_Front.jpg |make=Alpha |type=Sedan |price=$75,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_Giulia_(952)#Quadrifoglio |rlname=Alfa Romeo Giulia Quadrifoglio |limited=0 |electric=0 }} The 2021 Alpha Giulia Quadrifolgio is a four door sedan produced by [[Alpha]]. It can be purchased from the dealership for $75,250. ==Stats== The Giulia Quadrifolgio has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=505|tqval=443|whval=3821|spdval=199|drv=RWD}} {{Maxstats|hpval=1063|tqval=1137|whval=3321|spdval=244}} ==Gallery== <gallery> File:GiuliaQuad_Rear.jpg|Rear view of the 2021 Alpha Giulia Quadrifolgio. </gallery> bf51b72f12046f72bb5ee545c1d87be5e552833b 2021 Toyoto Prius Prime 0 693 984 2022-08-26T22:03:53Z S30Z 2 Created page with " {{Carinfo |name=2021 Toyoto Prius Prime |image=Prius_Front.jpg |make=Toyoto |type=Sedan |price=$30,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Prius_Plug-in_Hybrid#Second_generation_%28XW50%3B_2016%E2%80%93present%29= |rlname=Toyota Prius Prime |limited=0 |electric=0 }} The 2021 Toyoto Prius Prime is a five door liftback produced by [[Toyoto]]. It can be purchased from the dealership for $30,000. ==Stats== The Prius Prim..." wikitext text/x-wiki {{Carinfo |name=2021 Toyoto Prius Prime |image=Prius_Front.jpg |make=Toyoto |type=Sedan |price=$30,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Prius_Plug-in_Hybrid#Second_generation_%28XW50%3B_2016%E2%80%93present%29= |rlname=Toyota Prius Prime |limited=0 |electric=0 }} The 2021 Toyoto Prius Prime is a five door liftback produced by [[Toyoto]]. It can be purchased from the dealership for $30,000. ==Stats== The Prius Prime has 5 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=121|tqval=120|whval=3375|spdval=119|drv=FWD}} {{Maxstats|hpval=732|tqval=385|whval=2875|spdval=151}} ==Gallery== <gallery> File:Prius_Rear.jpg|Rear view of the 2021 Toyoto Prius Prime. </gallery> 8e1f603f0fb074d3554f915bba5dac3a9b611b43 2020 Owdi A7 Sportback 0 694 985 2022-08-26T22:04:11Z S30Z 2 Created page with " {{Carinfo |name=2020 Owdi A7 Sportback |image=A7_Front.jpg |make=Owdi |type=Sedan |price=$78,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A7#Second_generation_(Type_4K8;_2018%E2%80%93present) |rlname=Audi A7 Sportback |limited=0 |electric=0 }} The 2020 Owdi A7 Sportback is a five door liftback produced by [[Owdi]]. It can be purchased from the dealership for $78,350. ==Stats== The A7 Sportback has 5 seats and a fuel capacit..." wikitext text/x-wiki {{Carinfo |name=2020 Owdi A7 Sportback |image=A7_Front.jpg |make=Owdi |type=Sedan |price=$78,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A7#Second_generation_(Type_4K8;_2018%E2%80%93present) |rlname=Audi A7 Sportback |limited=0 |electric=0 }} The 2020 Owdi A7 Sportback is a five door liftback produced by [[Owdi]]. It can be purchased from the dealership for $78,350. ==Stats== The A7 Sportback has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=335|tqval=325|whval=4332|spdval=133|drv=AWD}} {{Maxstats|hpval=964|tqval=1189|whval=3832|spdval=209}} ==Gallery== <gallery> File:A7_Rear.jpg|Rear view of the 2020 Owdi A7 Sportback. </gallery> bb797ad4d9ee164a108c96a0f8d29b3365087a95 2021 Volkinsen Jetta 0 695 986 2022-08-26T22:04:27Z S30Z 2 Created page with " {{Carinfo |name=2021 Volkinsen Jetta |image=Jetta_Front.jpg |make=Volkinsen |type=Sedan |price=$18,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Jetta_(A7) |rlname=Volkswagen Jetta (7th gen.) |limited=0 |electric=0 }} The 2021 Volkinsen Jetta is a four door sedan produced by [[Volkinsen]]. It can be purchased from the dealership for $18,995. ==Stats== The Jetta has 5 seats and a fuel capacity of 13 gallons. {{Stocksta..." wikitext text/x-wiki {{Carinfo |name=2021 Volkinsen Jetta |image=Jetta_Front.jpg |make=Volkinsen |type=Sedan |price=$18,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Jetta_(A7) |rlname=Volkswagen Jetta (7th gen.) |limited=0 |electric=0 }} The 2021 Volkinsen Jetta is a four door sedan produced by [[Volkinsen]]. It can be purchased from the dealership for $18,995. ==Stats== The Jetta has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=146|tqval=160|whval=2888|spdval=103|drv=FWD}} {{Maxstats|hpval=964|tqval=1189|whval=3832|spdval=209}} ==Gallery== <gallery> File:Jetta_Rear.jpg|Rear view of the 2021 Volkinsen Jetta. </gallery> 8188e7f75a69007a909b5167ef0fd5a89b9cd23d 2011 Fard Crown Victoria 0 696 987 2022-08-26T22:04:43Z S30Z 2 Created page with " {{Carinfo |name=2011 Fard Crown Victoria |image=CrownVic_Front.jpg |make=Fard |type=Sedan |price=$11,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria#Second_generation_(EN114;_1998%E2%80%932012) |rlname=Ford Crown Victoria (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $11,850. ==Stats== The Crown Victoria ha..." wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria |image=CrownVic_Front.jpg |make=Fard |type=Sedan |price=$11,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria#Second_generation_(EN114;_1998%E2%80%932012) |rlname=Ford Crown Victoria (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria is a four door sedan produced by [[Fard]]. It can be purchased from the dealership for $11,850. ==Stats== The Crown Victoria has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=239|tqval=281|whval=4129|spdval=106|drv=RWD}} {{Maxstats|hpval=1088|tqval=650|whval=3629|spdval=209}} ==Gallery== <gallery> File:CrownVic_Rear.jpg|Rear view of the 2011 Fard Crown Victoria. </gallery> 0daef25d1aa7941753677f43b7e58c26681f5e6e 2020 Dodje Charger Badcat Widebody 0 697 988 2022-08-26T22:04:59Z S30Z 2 Created page with " {{Carinfo |name=2020 Dodje Charger Badcat Widebody |image=ChargerBW_Front.jpg |make=Dodje |type=Sedan |price=$73,240 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Widebody is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $73,240. ==Stats== The Charger Badcat Widebody..." wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Widebody |image=ChargerBW_Front.jpg |make=Dodje |type=Sedan |price=$73,240 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Widebody is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $73,240. ==Stats== The Charger Badcat Widebody has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=707|tqval=639|whval=4586|spdval=199|drv=RWD}} {{Maxstats|hpval=1529|tqval=1477|whval=4086|spdval=226}} ==Gallery== <gallery> File:ChargerBW_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Widebody. </gallery> 8b506343729a633235e46b79237af36ac62aae73 2013 BNW M5 0 698 989 2022-08-26T22:05:15Z S30Z 2 Created page with " {{Carinfo |name=2013 BNW M5 |image=13M5_Front.jpg |make=BNW |type=Sedan |price=$39,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M5#F10_M5_(2011%E2%80%932016) |rlname=BMW M5 (F10) |limited=0 |electric=0 }} The 2013 BNW M5 is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $39,590. ==Stats== The M5 has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=560|tqval=500|whval=4387|spd..." wikitext text/x-wiki {{Carinfo |name=2013 BNW M5 |image=13M5_Front.jpg |make=BNW |type=Sedan |price=$39,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M5#F10_M5_(2011%E2%80%932016) |rlname=BMW M5 (F10) |limited=0 |electric=0 }} The 2013 BNW M5 is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $39,590. ==Stats== The M5 has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=560|tqval=500|whval=4387|spdval=195|drv=RWD}} {{Maxstats|hpval=1149|tqval=925|whval=3887|spdval=248}} ==Gallery== <gallery> File:13M5_Rear.jpg|Rear view of the 2013 BNW M5. </gallery> b53c48fa4a3cfb9b0934f630602f129d6372d7d3 2016 Chavy SS 0 699 990 2022-08-26T22:05:35Z S30Z 2 Created page with " {{Carinfo |name=2016 Chavy SS |image=SS_Front.jpg |make=Chavy |type=Sedan |price=$39,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Holden_Commodore_(VF)#Chevrolet_SS |rlname=Chevrolet SS |limited=0 |electric=0 }} The 2016 Chavy SS is a four door sedan produced by [[Chavy]]. It can be purchased from the dealership for $39,990. ==Stats== The SS has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=415|tqval=415|whval=3..." wikitext text/x-wiki {{Carinfo |name=2016 Chavy SS |image=SS_Front.jpg |make=Chavy |type=Sedan |price=$39,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Holden_Commodore_(VF)#Chevrolet_SS |rlname=Chevrolet SS |limited=0 |electric=0 }} The 2016 Chavy SS is a four door sedan produced by [[Chavy]]. It can be purchased from the dealership for $39,990. ==Stats== The SS has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=415|tqval=415|whval=3997|spdval=157|drv=RWD}} {{Maxstats|hpval=1378|tqval=1309|whval=3459|spdval=226}} ==Gallery== <gallery> File:SS_Rear.jpg|Rear view of the 2016 Chavy SS. </gallery> a67d34947ae973d1cea36518d037babf5637cb4d 2022 Pohrse Taycan Turbo S 0 700 991 2022-08-26T22:05:53Z S30Z 2 Created page with " {{Carinfo |name=2022 Pohrse Taycan Turbo S |image=Taycan_Front.jpg |make=Pohrse |type=Sedan |price=$186,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_Taycan |rlname=Porsche Taycan |limited=0 |electric=1 }} The 2022 Pohrse Taycan Turbo S is a four door sedan produced by [[Pohrse]]. It can be purchased from the dealership for $186,350. ==Stats== The Taycan Turbo S has 5 seats. As an electric vehicle, engine and transmission..." wikitext text/x-wiki {{Carinfo |name=2022 Pohrse Taycan Turbo S |image=Taycan_Front.jpg |make=Pohrse |type=Sedan |price=$186,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_Taycan |rlname=Porsche Taycan |limited=0 |electric=1 }} The 2022 Pohrse Taycan Turbo S is a four door sedan produced by [[Pohrse]]. It can be purchased from the dealership for $186,350. ==Stats== The Taycan Turbo S has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=616|tqval=774|whval=5060|spdval=161|drv=AWD}} {{Maxstats|hpval=616|tqval=774|whval=5060|spdval=161}} ==Gallery== <gallery> File:Taycan_Rear.jpg|Rear view of the 2022 Pohrse Taycan Turbo S. </gallery> f10be096407e3b3867a53c983c1f169a12128cd8 2022 Cadillic CT5-V Blackwing 0 701 992 2022-08-26T22:06:10Z S30Z 2 Created page with " {{Carinfo |name=2022 Cadillic CT5-V Blackwing |image=CT5_Front.jpg |make=Cadillic |type=Sedan |price=$95,545 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CT5#CT5-V_Blackwing |rlname=Cadillac CT5-V Blackwing |limited=0 |electric=0 }} The 2022 Cadillic CT5-V Blackwing is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $95,545. ==Stats== The CT5-V Blackwing has 5 seats and a fuel capacit..." wikitext text/x-wiki {{Carinfo |name=2022 Cadillic CT5-V Blackwing |image=CT5_Front.jpg |make=Cadillic |type=Sedan |price=$95,545 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CT5#CT5-V_Blackwing |rlname=Cadillac CT5-V Blackwing |limited=0 |electric=0 }} The 2022 Cadillic CT5-V Blackwing is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $95,545. ==Stats== The CT5-V Blackwing has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=668|tqval=659|whval=4123|spdval=205|drv=RWD}} {{Maxstats|hpval=1436|tqval=1048|whval=3623|spdval=230}} ==Gallery== <gallery> File:CT5_Rear.jpg|Rear view of the 2022 Cadillic CT5-V Blackwing. </gallery> 485f8207f57d75d2fafda3ef174bcabbffeeb5e6 2019 Muaraci-Maibach Pullman 0 702 993 2022-08-26T22:06:29Z S30Z 2 Created page with " {{Carinfo |name=2019 Mauraci-Maibach Pullman |image=Pullman_Front.jpg |make=Mauraci-Bens |type=Sedan |price=$615,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(W222)#Mercedes-Maybach |rlname=Mercedes-Maybach S-Class Pullman |limited=0 |electric=0 }} The 2019 Mauraci-Maibach Pullman is a four door limousine produced by [[Mauraci-Bens]]. It can be purchased from the dealership for $615,000. ==Stats== The Pullm..." wikitext text/x-wiki {{Carinfo |name=2019 Mauraci-Maibach Pullman |image=Pullman_Front.jpg |make=Mauraci-Bens |type=Sedan |price=$615,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(W222)#Mercedes-Maybach |rlname=Mercedes-Maybach S-Class Pullman |limited=0 |electric=0 }} The 2019 Mauraci-Maibach Pullman is a four door limousine produced by [[Mauraci-Bens]]. It can be purchased from the dealership for $615,000. ==Stats== The Pullman has 6 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=621|tqval=737|whval=5037|spdval=154|drv=RWD}} {{Maxstats|hpval=1193|tqval=1355|whval=4295|spdval=191}} ==Gallery== <gallery> File:Pullman_Rear.jpg|Rear view of the 2019 Mauraci-Maibach Pullman. </gallery> a2356734ff865b033c6064cc42e7be142c025b2b 996 993 2022-08-26T22:11:22Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Muaraci-Maibach Pullman |image=Pullman_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$615,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(W222)#Mercedes-Maybach |rlname=Mercedes-Maybach S-Class Pullman |limited=0 |electric=0 }} The 2019 Muaraci-Maibach Pullman is a four door limousine produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $615,000. ==Stats== The Pullman has 6 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=621|tqval=737|whval=5037|spdval=154|drv=RWD}} {{Maxstats|hpval=1193|tqval=1355|whval=4295|spdval=191}} ==Gallery== <gallery> File:Pullman_Rear.jpg|Rear view of the 2019 Muaraci-Maibach Pullman. </gallery> e6416b6ef948a893cc2894ca5c72478ba753a13f 997 996 2022-08-26T22:11:35Z S30Z 2 S30Z moved page [[2019 Mauraci-Maibach Pullman]] to [[2019 Muaraci-Maibach Pullman]] wikitext text/x-wiki {{Carinfo |name=2019 Muaraci-Maibach Pullman |image=Pullman_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$615,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_S-Class_(W222)#Mercedes-Maybach |rlname=Mercedes-Maybach S-Class Pullman |limited=0 |electric=0 }} The 2019 Muaraci-Maibach Pullman is a four door limousine produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $615,000. ==Stats== The Pullman has 6 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=621|tqval=737|whval=5037|spdval=154|drv=RWD}} {{Maxstats|hpval=1193|tqval=1355|whval=4295|spdval=191}} ==Gallery== <gallery> File:Pullman_Rear.jpg|Rear view of the 2019 Muaraci-Maibach Pullman. </gallery> e6416b6ef948a893cc2894ca5c72478ba753a13f 2022 Keya Stinger GT2 0 704 995 2022-08-26T22:07:05Z S30Z 2 Created page with " {{Carinfo |name=2022 Keya Stinger GT2 |image=Stinger_Front.jpg |make=Keya |type=Sedan |price=$57,885 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kia_Stinger |rlname=Kia Stinger |limited=0 |electric=0 }} The 2022 Keya Stinger GT2 is a five door liftback produced by [[Keya]]. It can be purchased from the dealership for $57,885. ==Stats== The Stinger GT2 has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=368|tqval=376|..." wikitext text/x-wiki {{Carinfo |name=2022 Keya Stinger GT2 |image=Stinger_Front.jpg |make=Keya |type=Sedan |price=$57,885 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kia_Stinger |rlname=Kia Stinger |limited=0 |electric=0 }} The 2022 Keya Stinger GT2 is a five door liftback produced by [[Keya]]. It can be purchased from the dealership for $57,885. ==Stats== The Stinger GT2 has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=368|tqval=376|whval=4096|spdval=168|drv=AWD}} {{Maxstats|hpval=981|tqval=975|whval=3596|spdval=252}} ==Gallery== <gallery> File:Stinger_Rear.jpg|Rear view of the 2022 Keya Stinger GT2. </gallery> 0b0a6f5f4bbc06baeecaee1313bb1dcf21501846 2019 Mauraci-Maibach Pullman 0 705 998 2022-08-26T22:11:35Z S30Z 2 S30Z moved page [[2019 Mauraci-Maibach Pullman]] to [[2019 Muaraci-Maibach Pullman]] wikitext text/x-wiki #REDIRECT [[2019 Muaraci-Maibach Pullman]] 1163ef659d74c3ac1c6f812798c9232ef5833db1 File:Evo4 Rear.jpg 6 706 999 2022-08-26T23:31:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evo4 Front.jpg 6 707 1000 2022-08-26T23:31:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:STI Rear.jpg 6 708 1001 2022-08-26T23:32:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:STI Front.jpg 6 709 1002 2022-08-26T23:32:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Accord Rear.jpg 6 710 1003 2022-08-26T23:32:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Accord Front.jpg 6 711 1004 2022-08-26T23:32:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Quattroporte Rear.jpg 6 712 1005 2022-08-26T23:32:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Quattroporte Front.jpg 6 713 1006 2022-08-26T23:32:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1996 Mitsabisha Lancer Evolution GSR 0 714 1007 2022-08-26T23:33:27Z S30Z 2 Created page with " {{Carinfo |name=1996 Mitsabisha Lancer Evolution GSR |image=Evo4_Front.jpg |make=Mitsabisha |type=Sedan |price=$28,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution#Evolution_IV |rlname=Mitsubishi Lancer Evolution IV |limited=0 |electric=0 }} The 1996 Mitsabisha Lancer Evolution GSR is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $28,000. ==Stats== The Evolution..." wikitext text/x-wiki {{Carinfo |name=1996 Mitsabisha Lancer Evolution GSR |image=Evo4_Front.jpg |make=Mitsabisha |type=Sedan |price=$28,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution#Evolution_IV |rlname=Mitsubishi Lancer Evolution IV |limited=0 |electric=0 }} The 1996 Mitsabisha Lancer Evolution GSR is a four door sedan produced by [[Mitsabisha]]. It can be purchased from the dealership for $28,000. ==Stats== The Evolution GSR has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=276|tqval=260|whval=2976|spdval=144|drv=AWD}} {{Maxstats|hpval=927|tqval=955|whval=2476|spdval=153}} ==Gallery== <gallery> File:Evo4_Rear.jpg|Rear view of the 1996 Mitsabisha Lancer Evolution GSR. </gallery> fa93d16c6d6c7655919407f7830c7137ae615c65 2017 Saaburu WRX STI 0 715 1008 2022-08-26T23:33:56Z S30Z 2 Created page with " {{Carinfo |name=2017 Saaburu WRX STI |image=STI_Front.jpg |make=Saaburu |type=Sedan |price=$36,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Subaru_Impreza#Subaru_WRX_(VA) |rlname=Subaru WRX STI (VA) |limited=0 |electric=0 }} The 2017 Saaburu WRX STI is a four door sedan produced by [[Saaburu]]. It can be purchased from the dealership for $36,995. ==Stats== The WRX STI has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|..." wikitext text/x-wiki {{Carinfo |name=2017 Saaburu WRX STI |image=STI_Front.jpg |make=Saaburu |type=Sedan |price=$36,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Subaru_Impreza#Subaru_WRX_(VA) |rlname=Subaru WRX STI (VA) |limited=0 |electric=0 }} The 2017 Saaburu WRX STI is a four door sedan produced by [[Saaburu]]. It can be purchased from the dealership for $36,995. ==Stats== The WRX STI has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=310|tqval=325|whval=3450|spdval=155|drv=AWD}} {{Maxstats|hpval=1005|tqval=963|whval=2950|spdval=189}} ==Gallery== <gallery> File:STI_Rear.jpg|Rear view of the 2017 Saaburu WRX STI. </gallery> 4b59fffaf6ebde00bc2ac0141fd52d032b017821 2021 Handa Accord 0 716 1009 2022-08-26T23:34:18Z S30Z 2 Created page with " {{Carinfo |name=2021 Handa Accord |image=Accord_Front.jpg |make=Handa |type=Sedan |price=$36,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Accord#Tenth_generation_(2018) |rlname=Honda Accord (10th gen.) |limited=0 |electric=0 }} The 2021 Handa Accord is a four door sedan produced by [[Handa]]. It can be purchased from the dealership for $36,400. ==Stats== The Accord has 5 seats and a fuel capacity of 15 gallons. {{Stocksta..." wikitext text/x-wiki {{Carinfo |name=2021 Handa Accord |image=Accord_Front.jpg |make=Handa |type=Sedan |price=$36,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Accord#Tenth_generation_(2018) |rlname=Honda Accord (10th gen.) |limited=0 |electric=0 }} The 2021 Handa Accord is a four door sedan produced by [[Handa]]. It can be purchased from the dealership for $36,400. ==Stats== The Accord has 5 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=252|tqval=301|whval=3428|spdval=131|drv=FWD}} {{Maxstats|hpval=1204|tqval=1784|whval=2930|spdval=225}} ==Gallery== <gallery> File:Accord_Rear.jpg|Rear view of the 2021 Handa Accord. </gallery> 0fadfab6d57e0d3333e1d0ea5c8eb4458d2638cc 2011 Mazeri Quattroporte GTS 0 717 1010 2022-08-26T23:34:37Z S30Z 2 Created page with " {{Carinfo |name=2011 Mazeri Quattroporte GTS |image=Quattroporte_Front.jpg |make=Mazeri |type=Sedan |price=$28,200 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Maserati_Quattroporte#Quattroporte_V_(M139,_2003%E2%80%932012) |rlname=Maserati Quattroporte (5th gen.) |limited=0 |electric=0 }} The 2011 Mazeri Quattroporte GTS is a four door sedan produced by [[Mazeri]]. It can be purchased from the dealership for $28,200. ==Stats== The Q..." wikitext text/x-wiki {{Carinfo |name=2011 Mazeri Quattroporte GTS |image=Quattroporte_Front.jpg |make=Mazeri |type=Sedan |price=$28,200 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Maserati_Quattroporte#Quattroporte_V_(M139,_2003%E2%80%932012) |rlname=Maserati Quattroporte (5th gen.) |limited=0 |electric=0 }} The 2011 Mazeri Quattroporte GTS is a four door sedan produced by [[Mazeri]]. It can be purchased from the dealership for $28,200. ==Stats== The Quattroporte has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=444|tqval=376|whval=4376|spdval=176|drv=RWD}} {{Maxstats|hpval=1401|tqval=1116|whval=3876|spdval=242}} ==Gallery== <gallery> File:Quattroporte_Rear.jpg|Rear view of the 2011 Mazeri Quattroporte GTS. </gallery> 0e638ed1e816a67c930f1e665706dedffa65753a 2009 Naan 350Z 0 650 1011 937 2022-08-26T23:45:20Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z|image=350z_front.jpg|make=Naan|type=Coupe|price=$28,510|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z|rlname=Nissan 350Z (Z33)|limited=0|electric=0}} The 2009 Naan 350Z is a two-seater sportscar produced by [[Naan]]. It can be purchased at the dealership for $28,510. == Stats == The 350z has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,369|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,869|spdval=212}} == Gallery == <gallery> File:350z rear.jpg|The rear view of the 2009 Naan 350Z. </gallery> bdd61252d63e07fcffe17212a838fc9d385a7e3a 1012 1011 2022-08-26T23:45:28Z S30Z 2 S30Z moved page [[2009 Naan 350z]] to [[2009 Naan 350Z]] wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z|image=350z_front.jpg|make=Naan|type=Coupe|price=$28,510|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z|rlname=Nissan 350Z (Z33)|limited=0|electric=0}} The 2009 Naan 350Z is a two-seater sportscar produced by [[Naan]]. It can be purchased at the dealership for $28,510. == Stats == The 350z has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,369|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,869|spdval=212}} == Gallery == <gallery> File:350z rear.jpg|The rear view of the 2009 Naan 350Z. </gallery> bdd61252d63e07fcffe17212a838fc9d385a7e3a 2009 Naan 350z 0 718 1013 2022-08-26T23:45:28Z S30Z 2 S30Z moved page [[2009 Naan 350z]] to [[2009 Naan 350Z]] wikitext text/x-wiki #REDIRECT [[2009 Naan 350Z]] a6001f982da2678984694544ac20bfd388e04525 File:Portofino Rear.jpg 6 719 1014 2022-08-27T02:23:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Portofino Front.jpg 6 720 1015 2022-08-27T02:24:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F8 Rear.jpg 6 721 1016 2022-08-27T02:24:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F8 Front.jpg 6 722 1017 2022-08-27T02:24:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:458 Rear.jpg 6 723 1018 2022-08-27T02:25:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:458 Front.jpg 6 724 1019 2022-08-27T02:25:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R8V10 Engine.jpg 6 725 1020 2022-08-27T02:25:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R8V10 Rear.jpg 6 726 1021 2022-08-27T02:25:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R8V10 Front.jpg 6 727 1022 2022-08-27T02:25:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ST1 Engine.jpg 6 728 1023 2022-08-27T02:26:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ST1 Rear.jpg 6 729 1024 2022-08-27T02:26:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ST1 Front.jpg 6 730 1025 2022-08-27T02:26:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R35 Rear.jpg 6 731 1026 2022-08-27T02:26:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R35 Front.jpg 6 732 1027 2022-08-27T02:27:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20NSX Rear.jpg 6 733 1028 2022-08-27T02:27:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20NSX Front.jpg 6 734 1029 2022-08-27T02:27:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:AGMGTR Rear.jpg 6 735 1030 2022-08-27T02:27:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:AGMGTR Front.jpg 6 736 1031 2022-08-27T02:28:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:AventadorSVJ Rear.jpg 6 737 1032 2022-08-27T02:29:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:AventadorSVJ Front.jpg 6 738 1033 2022-08-27T02:29:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pista Rear.jpg 6 739 1034 2022-08-27T02:29:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pista Front.jpg 6 740 1035 2022-08-27T02:30:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Aventador Engine.jpg 6 741 1036 2022-08-27T02:30:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Aventador Rear.jpg 6 742 1037 2022-08-27T02:30:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Aventador Front.jpg 6 743 1038 2022-08-27T02:31:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F12 Rear.jpg 6 744 1039 2022-08-27T02:31:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F12 Front.jpg 6 745 1040 2022-08-27T02:31:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:McFarenGT Rear.jpg 6 746 1041 2022-08-27T02:32:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:McFarenGT Front.jpg 6 747 1042 2022-08-27T02:32:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 McFaren GT 0 748 1043 2022-08-27T02:32:42Z S30Z 2 Created page with "{{Carinfo |name=2020 McFaren GT |image=McFarenGT_Front.jpg |make=McFaren |type=Super |price=$210,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_GT |rlname=McLaren GT |limited=0 |electric=0 }} The 2020 McFaren GT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $210,000. ==Stats== The McFaren GT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=615|tqval=492|whval=3373|spdva..." wikitext text/x-wiki {{Carinfo |name=2020 McFaren GT |image=McFarenGT_Front.jpg |make=McFaren |type=Super |price=$210,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_GT |rlname=McLaren GT |limited=0 |electric=0 }} The 2020 McFaren GT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $210,000. ==Stats== The McFaren GT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=615|tqval=492|whval=3373|spdval=199|drv=RWD}} {{Maxstats|hpval=1245|tqval=1194|whval=2873|spdval=223}} ==Gallery== <gallery> File:McFarenGT_Rear.jpg|Rear view of the 2020 McFaren GT. </gallery> 808a09c7628782cb1d00949f40de958f96411f02 2019 Furai Portofino 0 749 1044 2022-08-27T02:33:30Z S30Z 2 Created page with "{{Carinfo |name=2019 Furai Portofino |image=Portofino_Front.jpg |make=Furai |type=Super |price=$264,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_Portofino |rlname=Ferrari Portofino |limited=0 |electric=0 }} The 2019 Furai Portofino is a supercar produced by [[Furai]]. It can be purchased from the dealership for $264,000. ==Stats== The Portofino has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=591|tqval=5..." wikitext text/x-wiki {{Carinfo |name=2019 Furai Portofino |image=Portofino_Front.jpg |make=Furai |type=Super |price=$264,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_Portofino |rlname=Ferrari Portofino |limited=0 |electric=0 }} The 2019 Furai Portofino is a supercar produced by [[Furai]]. It can be purchased from the dealership for $264,000. ==Stats== The Portofino has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=591|tqval=561|whval=3668|spdval=192|drv=RWD}} {{Maxstats|hpval=1223|tqval=1123|whval=3168|spdval=218}} ==Gallery== <gallery> File:Portofino_Rear.jpg|Rear view of the 2019 Furai Portofino. </gallery> 16f1c41f74a47035e1805929e26fe647d283aaf5 2011 Lamburghina Aventador 0 750 1045 2022-08-27T02:35:17Z S30Z 2 Created page with "{{Carinfo |name=2011 Lamburghina Aventador |image=Aventador_Front.jpg |make=Lamburghina |type=Super |price=$298,870 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Aventador |rlname=Lamborghini Aventador |limited=0 |electric=0 }} The 2011 Lamburghina Aventador is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $298,870. ==Stats== The Aventador has 2 seats and a fuel capacity of 22 gallons...." wikitext text/x-wiki {{Carinfo |name=2011 Lamburghina Aventador |image=Aventador_Front.jpg |make=Lamburghina |type=Super |price=$298,870 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Aventador |rlname=Lamborghini Aventador |limited=0 |electric=0 }} The 2011 Lamburghina Aventador is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $298,870. ==Stats== The Aventador has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=690|tqval=502|whval=3472|spdval=206|drv=AWD}} {{Maxstats|hpval=1417|tqval=1156|whval=2972|spdval=228}} ==Gallery== <gallery> File:Aventador_Rear.jpg|Rear view of the 2011 Lamburghina Aventador. File:Aventador_Engine.jpg|Engine shot of the 2011 Lamburghina Aventador. </gallery> d4c9e10df93802d397d01421f30ca4caff10b53c 2019 Furai 488 Pista 0 751 1046 2022-08-27T02:36:13Z S30Z 2 Created page with "{{Carinfo |name=2019 Furai 488 Pista |image=Pista_Front.jpg |make=Furai |type=Super |price=$464,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_488 |rlname=Ferrari 488 Pista |limited=0 |electric=0 }} The 2019 Furai 488 Pista is a supercar produced by [[Furai]]. It can be purchased from the dealership for $464,000. ==Stats== The 488 Pista has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=711|tqval=567|whval=3..." wikitext text/x-wiki {{Carinfo |name=2019 Furai 488 Pista |image=Pista_Front.jpg |make=Furai |type=Super |price=$464,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_488 |rlname=Ferrari 488 Pista |limited=0 |electric=0 }} The 2019 Furai 488 Pista is a supercar produced by [[Furai]]. It can be purchased from the dealership for $464,000. ==Stats== The 488 Pista has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=711|tqval=567|whval=3053|spdval=206|drv=RWD}} {{Maxstats|hpval=1381|tqval=1341|whval=2553|spdval=228}} ==Gallery== <gallery> File:Pista_Rear.jpg|Rear view of the 2019 Furai 488 Pista. </gallery> 3b6cf5292ce9cdc3da40d8a404e2d078a65c59fb Axura 0 752 1047 2022-08-27T02:37:05Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Axura|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Acura|rlname=Acura}} Axura is a fictional premium vehicle manufacture in Southwest Florida. It is based on [https://www.acura.com Acura] == Vehicles by Axura == You can find all vehicles by Axura [[:Category:Axura|here]]." wikitext text/x-wiki {{Makeinfo|makename=Axura|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Acura|rlname=Acura}} Axura is a fictional premium vehicle manufacture in Southwest Florida. It is based on [https://www.acura.com Acura] == Vehicles by Axura == You can find all vehicles by Axura [[:Category:Axura|here]]. cc5a71e0159f5504926890e7c6392018ecd4c6d7 2019 Lamburghina Aventador SVJ 0 753 1048 2022-08-27T02:37:24Z S30Z 2 Created page with "{{Carinfo |name=2019 Lamburghina Aventador SVJ |image=AventadorSVJ_Front.jpg |make=Lamburghina |type=Super |price=$699,570 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Aventador |rlname=Lamborghini Aventador |limited=0 |electric=0 }} The 2019 Lamburghina Aventador SVJ is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $699,570. ==Stats== The Aventador SVJ has 2 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=2019 Lamburghina Aventador SVJ |image=AventadorSVJ_Front.jpg |make=Lamburghina |type=Super |price=$699,570 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Aventador |rlname=Lamborghini Aventador |limited=0 |electric=0 }} The 2019 Lamburghina Aventador SVJ is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $699,570. ==Stats== The Aventador SVJ has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=759|tqval=530|whval=3362|spdval=204|drv=AWD}} {{Maxstats|hpval=1509|tqval=1198|whval=2862|spdval=234}} ==Gallery== <gallery> File:AventadorSVJ_Rear.jpg|Rear view of the 2019 Lamburghina Aventador SVJ. </gallery> 2962f64164c8f29325b7a4abda30cf0d1f27f451 Category:Axura 14 754 1049 2022-08-27T02:37:26Z Cheemsthethird 10 Created page with "All Axura vehicles in Southwest Florida." wikitext text/x-wiki All Axura vehicles in Southwest Florida. 5cd7ef5b6e9c08a19af177abe2e1138e3b4286ee 2018 Muaraci-AGM GT R 0 755 1050 2022-08-27T02:37:49Z S30Z 2 Created page with "{{Carinfo |name=2018 Muaraci-AGM GT R |image=AGMGTR_Front.jpg |make=Muaraci-Bens |type=Super |price=$162,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_GT |rlname=Mercedes-AMG GT R |limited=0 |electric=0 }} The 2018 Muaraci-AGM GT R is a supercar produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $162,000. ==Stats== The AGM GT R has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=5..." wikitext text/x-wiki {{Carinfo |name=2018 Muaraci-AGM GT R |image=AGMGTR_Front.jpg |make=Muaraci-Bens |type=Super |price=$162,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_GT |rlname=Mercedes-AMG GT R |limited=0 |electric=0 }} The 2018 Muaraci-AGM GT R is a supercar produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $162,000. ==Stats== The AGM GT R has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=577|tqval=575|whval=3428|spdval=184|drv=RWD}} {{Maxstats|hpval=1142|tqval=1214|whval=2928|spdval=205}} ==Gallery== <gallery> File:AGMGTR_Rear.jpg|Rear view of the 2018 Muaraci-AGM GT R. </gallery> 4248e431d895dfeca7ebdedddc6dab0e6a252fc9 2016 Furai F12 0 756 1051 2022-08-27T02:38:40Z S30Z 2 Created page with "{{Carinfo |name=2016 Furai F12 |image=F12_Front.jpg |make=Furai |type=Super |price=$290,650 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_F12 |rlname=Ferrari F12 |limited=0 |electric=0 }} The 2016 Furai F12 is a supercar produced by [[Furai]]. It can be purchased from the dealership for $290,650. ==Stats== The F12 has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=730|tqval=531|whval=3593|spdval=210|drv=RWD}} {..." wikitext text/x-wiki {{Carinfo |name=2016 Furai F12 |image=F12_Front.jpg |make=Furai |type=Super |price=$290,650 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_F12 |rlname=Ferrari F12 |limited=0 |electric=0 }} The 2016 Furai F12 is a supercar produced by [[Furai]]. It can be purchased from the dealership for $290,650. ==Stats== The F12 has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=730|tqval=531|whval=3593|spdval=210|drv=RWD}} {{Maxstats|hpval=1471|tqval=1334|whval=3093|spdval=240}} ==Gallery== <gallery> File:F12_Rear.jpg|Rear view of the 2016 Furai F12. </gallery> 6eac6d44ddc9ac2631415c7a35b18b3364b6fce6 2017 Axura NSX 0 757 1052 2022-08-27T02:39:11Z S30Z 2 Created page with "{{Carinfo |name=2020 Axura NSX |image=20NSX_Front.jpg |make=Axura |type=Super |price=$157,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NSX_(second_generation) |rlname=Acura NSX (2nd gen.) |limited=0 |electric=0 }} The 2020 Axura NSX is a supercar produced by [[Axura]]. It can be purchased from the dealership for $157,500. ==Stats== The NSX has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=571|tqval=485|whva..." wikitext text/x-wiki {{Carinfo |name=2020 Axura NSX |image=20NSX_Front.jpg |make=Axura |type=Super |price=$157,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NSX_(second_generation) |rlname=Acura NSX (2nd gen.) |limited=0 |electric=0 }} The 2020 Axura NSX is a supercar produced by [[Axura]]. It can be purchased from the dealership for $157,500. ==Stats== The NSX has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=571|tqval=485|whval=3878|spdval=198|drv=AWD}} {{Maxstats|hpval=1301|tqval=1244|whval=3378|spdval=235}} ==Gallery== <gallery> File:20NSX_Rear.jpg|Rear view of the 2020 Axura NSX. </gallery> 0e0adb1da03aa80d191a6e31087ae4c8a15e5c87 2021 Naan R35 GTR 0 758 1053 2022-08-27T02:39:43Z S30Z 2 Created page with "{{Carinfo |name=2018 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2018 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=1..." wikitext text/x-wiki {{Carinfo |name=2018 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2018 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2018 Naan R35 GTR. </gallery> bbbd6e741501ccfad929c9b18d1f1cdda95ea8ae 2010 Xynvo ST1 0 759 1054 2022-08-27T02:41:33Z S30Z 2 Created page with "{{Carinfo |name=2010 Xynvo ST1 |image=ST1_Front.jpg |make=Xynvo |type=Super |price=$1,125,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Zenvo_ST1 |rlname=Zenvo ST1 |limited=0 |electric=0 }} The 2010 Xynvo ST1 is a supercar produced by [[Xynvo]]. It can be purchased from the dealership for $1,125,000. ==Stats== The ST1 has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=1089|tqval=1055|whval=3721|spdval=215|drv=RWD}}..." wikitext text/x-wiki {{Carinfo |name=2010 Xynvo ST1 |image=ST1_Front.jpg |make=Xynvo |type=Super |price=$1,125,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Zenvo_ST1 |rlname=Zenvo ST1 |limited=0 |electric=0 }} The 2010 Xynvo ST1 is a supercar produced by [[Xynvo]]. It can be purchased from the dealership for $1,125,000. ==Stats== The ST1 has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=1089|tqval=1055|whval=3721|spdval=215|drv=RWD}} {{Maxstats|hpval=1750|tqval=1303|whval=3221|spdval=253}} ==Gallery== <gallery> File:ST1_Rear.jpg|Rear view of the 2010 Xynvo ST1. File:ST1_Engine.jpg|Engine shot of the 2010 Xynvo ST1. </gallery> a27342dc316e6faba83bcf648ef4e09693e5127b 2021 Owdi R8 V10 0 760 1055 2022-08-27T02:42:19Z S30Z 2 Created page with "{{Carinfo |name=2021 Owdi R8 V10 |image=R8V10_Front.jpg |make=Owdi |type=Super |price=$211,920 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_R8_(Type_4S) |rlname=Audi R8 V10 |limited=0 |electric=0 }} The 2021 Owdi R8 V10 is a supercar produced by [[Owdi]]. It can be purchased from the dealership for $211,920. ==Stats== The R8 V10 has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=602|tqval=413|whval=3516|spdval=20..." wikitext text/x-wiki {{Carinfo |name=2021 Owdi R8 V10 |image=R8V10_Front.jpg |make=Owdi |type=Super |price=$211,920 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_R8_(Type_4S) |rlname=Audi R8 V10 |limited=0 |electric=0 }} The 2021 Owdi R8 V10 is a supercar produced by [[Owdi]]. It can be purchased from the dealership for $211,920. ==Stats== The R8 V10 has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=602|tqval=413|whval=3516|spdval=202|drv=AWD}} {{Maxstats|hpval=1243|tqval=1101|whval=3016|spdval=213}} ==Gallery== <gallery> File:R8V10_Rear.jpg|Rear view of the 2021 Owdi R8 V10. File:R8V10_Engine.jpg|Engine shot of the 2021 Owdi R8 V10. </gallery> ba43dbe016ae5aa880240e63f056c5d853a2699d 2015 Furai 458 Italia 0 761 1056 2022-08-27T02:42:43Z S30Z 2 Created page with "{{Carinfo |name=2015 Furai 458 Italia |image=458_Front.jpg |make=Furai |type=Super |price=$240,475 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_458 |rlname=Ferrari 458 Italia |limited=0 |electric=0 }} The 2015 Furai 458 Italia is a supercar produced by [[Furai]]. It can be purchased from the dealership for $240,475. ==Stats== The 458 Italia has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=570|tqval=398|whval..." wikitext text/x-wiki {{Carinfo |name=2015 Furai 458 Italia |image=458_Front.jpg |make=Furai |type=Super |price=$240,475 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_458 |rlname=Ferrari 458 Italia |limited=0 |electric=0 }} The 2015 Furai 458 Italia is a supercar produced by [[Furai]]. It can be purchased from the dealership for $240,475. ==Stats== The 458 Italia has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=570|tqval=398|whval=3274|spdval=193|drv=RWD}} {{Maxstats|hpval=1267|tqval=1282|whval=2774|spdval=217}} ==Gallery== <gallery> File:458_Rear.jpg|Rear view of the 2015 Furai 458 Italia. </gallery> 852be451be0eeaee7bcb5d2fb227d6f6c83db170 Banthey 0 762 1057 2022-08-27T02:43:00Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Banthey|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Bentley|rlname=Bentley Motors Limited}} Banthey is a fictional luxury cars & SUVs manufacture in Southwest Florida. It is based on [https://www.bentleymotors.com/en.html?cid=US-M-22-CCM-ALWAYS-GOOG&utm_audience=Other&utm_author=phd&utm_campaign=evergreen&utm_content=alwaysonsearch2022&utm_date=010122&utm_funnel=act&utm_medium=cpc&utm_mediumtype=pd&utm_product=other&utm_person..." wikitext text/x-wiki {{Makeinfo|makename=Banthey|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Bentley|rlname=Bentley Motors Limited}} Banthey is a fictional luxury cars & SUVs manufacture in Southwest Florida. It is based on [https://www.bentleymotors.com/en.html?cid=US-M-22-CCM-ALWAYS-GOOG&utm_audience=Other&utm_author=phd&utm_campaign=evergreen&utm_content=alwaysonsearch2022&utm_date=010122&utm_funnel=act&utm_medium=cpc&utm_mediumtype=pd&utm_product=other&utm_persona=all&utm_source=other&utm_value=na&gclid=CjwKCAjw3qGYBhBSEiwAcnTRLn0JYJncP1au4J62BTPpbsuv_G0F3YDQdvFbRH8tvyFNXfvIjHulPhoCEA4QAvD_BwE&gclsrc=aw.ds Bentley]. == Vehicles by Banthey == You can find all vehicles by Banthey [[:Category:Banthey|here]]. b707149f2605429ae08f6548f19e6f02d51b9ff4 2021 Furai F8 Tributo 0 763 1058 2022-08-27T02:43:09Z S30Z 2 Created page with "{{Carinfo |name=2021 Furai F8 Tributo |image=F8_Front.jpg |make=Furai |type=Super |price=$276,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_F8 |rlname=Ferrari F8 Tributo |limited=0 |electric=0 }} The 2021 Furai F8 Tributo is a supercar produced by [[Furai]]. It can be purchased from the dealership for $276,550. ==Stats== The F8 Tributo has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=711|tqval=567|whval=3..." wikitext text/x-wiki {{Carinfo |name=2021 Furai F8 Tributo |image=F8_Front.jpg |make=Furai |type=Super |price=$276,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_F8 |rlname=Ferrari F8 Tributo |limited=0 |electric=0 }} The 2021 Furai F8 Tributo is a supercar produced by [[Furai]]. It can be purchased from the dealership for $276,550. ==Stats== The F8 Tributo has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=711|tqval=567|whval=3053|spdval=206|drv=RWD}} {{Maxstats|hpval=1381|tqval=1345|whval=2664|spdval=229}} ==Gallery== <gallery> File:F8_Rear.jpg|Rear view of the 2021 Furai F8 Tributo. </gallery> ab3a215fa5d5d5a72a5870cb743c9a42de8132ff Category:Banthey 14 764 1059 2022-08-27T02:43:30Z Cheemsthethird 10 Created page with "All Banthey vehicles in Southwest Florida." wikitext text/x-wiki All Banthey vehicles in Southwest Florida. 2b25a90a43eaea658a4d3bfee9947c62e326e246 2022 Pohrse Taycan Turbo S 0 700 1060 991 2022-08-27T02:46:13Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Pohrse Taycan Turbo S |image=Taycan_Front.jpg |make=Pohrse |type=Sedan |price=$186,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_Taycan |rlname=Porsche Taycan |limited=0 |electric=1 }} The 2022 Pohrse Taycan Turbo S is a four door sedan produced by [[Pohrse]]. It can be purchased from the dealership for $186,350. ==Stats== The Taycan Turbo S has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=616|tqval=774|whval=5060|spdval=161|drv=AWD}} {{Maxstats|hpval=616|tqval=774|whval=4560|spdval=161}} ==Gallery== <gallery> File:Taycan_Rear.jpg|Rear view of the 2022 Pohrse Taycan Turbo S. </gallery> b416c4dd6d78688a28851f5da6a8bed5bc427b09 Brick 0 765 1061 2022-08-27T02:46:17Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Brick|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Buick|rlname=Buick}} Brick is a fictional American automobile manufacture in Southwest Florida. It is based on [https://www.buick.com Buick]. == Vehicles by Brick == You can find all vehicles by Brick [[:Category:Brick|here]]." wikitext text/x-wiki {{Makeinfo|makename=Brick|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Buick|rlname=Buick}} Brick is a fictional American automobile manufacture in Southwest Florida. It is based on [https://www.buick.com Buick]. == Vehicles by Brick == You can find all vehicles by Brick [[:Category:Brick|here]]. a5974a8d167d5ba0175f9916c0fff63ede51585e Category:Brick 14 766 1062 2022-08-27T02:47:44Z Cheemsthethird 10 Created page with "All Brick vehicles in Southwest Florida." wikitext text/x-wiki All Brick vehicles in Southwest Florida. caa3eb3622da30748dd5c84f7e9fc47910046b0c Ethanol 0 767 1063 2022-08-27T02:55:13Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Ethanol|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Hennessey_Performance_Engineering|rlname=Hennessey Performance Engineering}} Ethanol is a fictional American tuning house specializes in modifying sports cars, luxury cars and trucks in Southwest Florida. They also manufacture sports cars of their own. Ethanol is based on [https://www.hennesseyperformance.com Hennessey Performance] == Vehicles by Ethanol == You can find all..." wikitext text/x-wiki {{Makeinfo|makename=Ethanol|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Hennessey_Performance_Engineering|rlname=Hennessey Performance Engineering}} Ethanol is a fictional American tuning house specializes in modifying sports cars, luxury cars and trucks in Southwest Florida. They also manufacture sports cars of their own. Ethanol is based on [https://www.hennesseyperformance.com Hennessey Performance] == Vehicles by Ethanol == You can find all vehicles by [[:Category:Ethanol|Ethanol]] here. cec452ae86207ccfb62dcef84308f44d3e812b51 Category:Ethanol 14 768 1064 2022-08-27T02:55:35Z Cheemsthethird 10 Created page with "All Ethanol vehicles in Southwest Florida." wikitext text/x-wiki All Ethanol vehicles in Southwest Florida. 260c0c78ea13bbfae4dca654b94eb1ce1dd90c29 Genesys 0 769 1065 2022-08-27T03:00:07Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Genesys|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Genesis_Motor|rlname=Genesis Motor, LLC}} Genesys is a fictional premium automobile manufacture in Southwest Florida. It is based on [https://www.genesis.com/us/en/genesis.html Genesis]. == Vehicles by Genesys == You can find all vehicles by Genesys [[:Category:Genesys|here]]." wikitext text/x-wiki {{Makeinfo|makename=Genesys|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Genesis_Motor|rlname=Genesis Motor, LLC}} Genesys is a fictional premium automobile manufacture in Southwest Florida. It is based on [https://www.genesis.com/us/en/genesis.html Genesis]. == Vehicles by Genesys == You can find all vehicles by Genesys [[:Category:Genesys|here]]. f6c5bc8d6d697a5febc5c6924b01f45062e5e2d3 Category:Genesys 14 770 1066 2022-08-27T03:00:39Z Cheemsthethird 10 Created page with "All Genesys vehicles in Southwest Florida." wikitext text/x-wiki All Genesys vehicles in Southwest Florida. 53da30b972ec6d66f451550ba8525ae52840894b Hibiscus 0 771 1067 2022-08-27T03:05:09Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Hibiscus|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lotus_Cars|rlname=Lotus Cars Limited}} Hibiscus is a fictional sportscar and racing cars manufacture in Southwest Florida. It is based on [https://www.lotuscars.com/en-US/ Lotus]. == Vehicles by Hibiscus == You can find all vehicles by Hibiscus [[:Category:Hibiscus|here]]." wikitext text/x-wiki {{Makeinfo|makename=Hibiscus|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lotus_Cars|rlname=Lotus Cars Limited}} Hibiscus is a fictional sportscar and racing cars manufacture in Southwest Florida. It is based on [https://www.lotuscars.com/en-US/ Lotus]. == Vehicles by Hibiscus == You can find all vehicles by Hibiscus [[:Category:Hibiscus|here]]. 1e5057449b3cbed6582550cb410a1cef5d255468 Category:Hibiscus 14 772 1068 2022-08-27T03:05:33Z Cheemsthethird 10 Created page with "All Hibiscus vehicles in Southwest Florida." wikitext text/x-wiki All Hibiscus vehicles in Southwest Florida. 61c7ee13caedaefe61dc6822e16eb969388c1b61 Mitsabisha 0 773 1069 2022-08-27T03:09:51Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Mitsabisha|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Mitsubishi_Motors|rlname=Mitsubishi Motors}} Mitsabisha is a fictional automobile manufacture in Southwest Florida. It is based on [https://www.mitsubishicars.com Mitsubishi]. == Vehicles by Mitsabisha == You can find all vehicles by Mitsabisha [[:Category:Mitsabisha|here]]." wikitext text/x-wiki {{Makeinfo|makename=Mitsabisha|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Mitsubishi_Motors|rlname=Mitsubishi Motors}} Mitsabisha is a fictional automobile manufacture in Southwest Florida. It is based on [https://www.mitsubishicars.com Mitsubishi]. == Vehicles by Mitsabisha == You can find all vehicles by Mitsabisha [[:Category:Mitsabisha|here]]. b1d0707d5b222512324bb542506d1dca7f57644d Category:Mitsabisha 14 774 1070 2022-08-27T03:10:16Z Cheemsthethird 10 Created page with "All Mitsabisha vehicles in Southwest Florida." wikitext text/x-wiki All Mitsabisha vehicles in Southwest Florida. 7bc1c8a0204350f08e4392bcea8afe8ff556cdbf Plywood 0 775 1071 2022-08-27T03:14:51Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Plywood|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Plymouth_(automobile)|rlname=Plymouth}} Plywood is a fictional automobile manufacture in Southwest Florida. It is based on the discontinued automobile manufacture [https://en.wikipedia.org/wiki/Plymouth_(automobile) Plymouth]. == Vehicles by Plymouth == You can find all vehicles by Plymouth [[:Category:Plymouth|here]]." wikitext text/x-wiki {{Makeinfo|makename=Plywood|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Plymouth_(automobile)|rlname=Plymouth}} Plywood is a fictional automobile manufacture in Southwest Florida. It is based on the discontinued automobile manufacture [https://en.wikipedia.org/wiki/Plymouth_(automobile) Plymouth]. == Vehicles by Plymouth == You can find all vehicles by Plymouth [[:Category:Plymouth|here]]. 22d1017c8614929531cec128d46d63ab839d14ec 1072 1071 2022-08-27T03:15:23Z Cheemsthethird 10 /* Vehicles by Plymouth */ wikitext text/x-wiki {{Makeinfo|makename=Plywood|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Plymouth_(automobile)|rlname=Plymouth}} Plywood is a fictional automobile manufacture in Southwest Florida. It is based on the discontinued automobile manufacture [https://en.wikipedia.org/wiki/Plymouth_(automobile) Plymouth]. == Vehicles by Plywood == You can find all vehicles by Plywood [[:Category:Plywood|here]]. 776002e8e39d3ca82131abfaf300889be03041fd Category:Plywood 14 776 1073 2022-08-27T03:15:48Z Cheemsthethird 10 Created page with "All Plymouth vehicles in Southwest Florida." wikitext text/x-wiki All Plymouth vehicles in Southwest Florida. c30dcbdc733d6dc07d5fea7a8d9f7afc26115208 Rolls Rayce 0 777 1074 2022-08-27T03:18:27Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Rolls Rayce|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Motor_Cars|rlname=Rolls-Royce Motor Cars Limited}} Rolls Rayce is a fictional luxury automobile manufacture in Southwest Florida. It is based on [https://www.rolls-roycemotorcars.com/en_US/home.html Rolls-Royce]. == Vehicles by Rolls Rayce == You can find all vehicles by Rolls Rayce [[:Category:Rolls Rayce|here]]." wikitext text/x-wiki {{Makeinfo|makename=Rolls Rayce|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Motor_Cars|rlname=Rolls-Royce Motor Cars Limited}} Rolls Rayce is a fictional luxury automobile manufacture in Southwest Florida. It is based on [https://www.rolls-roycemotorcars.com/en_US/home.html Rolls-Royce]. == Vehicles by Rolls Rayce == You can find all vehicles by Rolls Rayce [[:Category:Rolls Rayce|here]]. 25036fd7b51651c9e4d0108c1754592b7c9e4914 Category:Rolls Rayce 14 778 1075 2022-08-27T03:19:11Z Cheemsthethird 10 Created page with "All Rolls Rayce vehicles in Southwest Florida." wikitext text/x-wiki All Rolls Rayce vehicles in Southwest Florida. 538aefe9e36e84563e60bf25217c952cccc64644 Cadillic 0 779 1076 2022-08-27T03:21:49Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Cadillic|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Cadillac|rlname=Cadillac}} Cadillic is a fictional luxury automobile manufacture in Southwest Florida. It is based on [https://www.cadillac.com Cadillac]. == Vehicles by Cadillic == You can find all vehicles by Cadillic [[:Category:Cadillic|here]]." wikitext text/x-wiki {{Makeinfo|makename=Cadillic|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Cadillac|rlname=Cadillac}} Cadillic is a fictional luxury automobile manufacture in Southwest Florida. It is based on [https://www.cadillac.com Cadillac]. == Vehicles by Cadillic == You can find all vehicles by Cadillic [[:Category:Cadillic|here]]. b17f9151f205a456c35f47c01b27e04525a2c25a Category:Cadillic 14 780 1077 2022-08-27T03:22:24Z Cheemsthethird 10 Created page with "All Cadillic vehicles in Southwest Florida." wikitext text/x-wiki All Cadillic vehicles in Southwest Florida. f3676825142d0e67eb835f7546bb993f987fb563 DeTomato 0 781 1078 2022-08-27T03:25:39Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=DeTomato|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/De_Tomaso|rlname=DeTomaso Automobili Itd.}} DeTomato is a fictional Italian automobile manufacture in Southwest Florida. It is based on [https://detomaso-automobili.com DeTomaso]. == Vehicles by DeTomato == You can find all vehicles by DeTomato [[:Category:DeTomato|here]]." wikitext text/x-wiki {{Makeinfo|makename=DeTomato|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/De_Tomaso|rlname=DeTomaso Automobili Itd.}} DeTomato is a fictional Italian automobile manufacture in Southwest Florida. It is based on [https://detomaso-automobili.com DeTomaso]. == Vehicles by DeTomato == You can find all vehicles by DeTomato [[:Category:DeTomato|here]]. 8b07a6462d249672f7baa841cf06d4fee1b0f34d Category:DeTomato 14 782 1079 2022-08-27T03:25:56Z Cheemsthethird 10 Created page with "All DeTomato vehicles in Southwest Florida." wikitext text/x-wiki All DeTomato vehicles in Southwest Florida. d80f24412c73d1c19889ac6ed46b4a216c86ee3f Xynvo 0 783 1080 2022-08-27T03:29:35Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Xynvo|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Zenvo_Automotive|rlname=Zenvo Automotive A/S}} Xynvo is a fictional Danish hyper-cars manufacture in Southwest Florida. It is based on [https://zenvoautomotive.com Zenvo]. == Vehicles by Xynvo == You can find all vehicles by Xynvo [[:Category:Xynvo|here]]." wikitext text/x-wiki {{Makeinfo|makename=Xynvo|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Zenvo_Automotive|rlname=Zenvo Automotive A/S}} Xynvo is a fictional Danish hyper-cars manufacture in Southwest Florida. It is based on [https://zenvoautomotive.com Zenvo]. == Vehicles by Xynvo == You can find all vehicles by Xynvo [[:Category:Xynvo|here]]. 81e6e7dc09cd4e9cc6257caa58b87cd37d62f128 1082 1080 2022-08-27T03:30:28Z Cheemsthethird 10 wikitext text/x-wiki {{Makeinfo|makename=Xynvo|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Zenvo_Automotive|rlname=Zenvo Automotive A/S}} Xynvo is a fictional Danish high-performance sportscars manufacture in Southwest Florida. It is based on [https://zenvoautomotive.com Zenvo]. == Vehicles by Xynvo == You can find all vehicles by Xynvo [[:Category:Xynvo|here]]. 47b61308331cd651d1cb119617d562a736ea587e Category:Xynvo 14 784 1081 2022-08-27T03:29:58Z Cheemsthethird 10 Created page with "All Xynvo vehicles in Southwest Florida." wikitext text/x-wiki All Xynvo vehicles in Southwest Florida. 6c2debd8d41a0d25723c92e5cbe5afb5e55ccd3e Saaburu 0 785 1083 2022-08-27T03:32:53Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Saabaru|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Subaru|rlname=Subaru}} Saaburu is a fictional automobile manufacture in Southwest Florida. It is based on [https://www.subaru.com/index.html Subaru]. == Vehicles by Saaburu == You can find all vehicles by Saaburu [[:Category:Saaburu|here]]." wikitext text/x-wiki {{Makeinfo|makename=Saabaru|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Subaru|rlname=Subaru}} Saaburu is a fictional automobile manufacture in Southwest Florida. It is based on [https://www.subaru.com/index.html Subaru]. == Vehicles by Saaburu == You can find all vehicles by Saaburu [[:Category:Saaburu|here]]. 1553caec6135bbface776c27965dd5a820296333 Category:Saaburu 14 786 1084 2022-08-27T03:33:14Z Cheemsthethird 10 Created page with "All Saaburu vehicles in Southwest Florida." wikitext text/x-wiki All Saaburu vehicles in Southwest Florida. 6c45983b06a77c778cc1900511f432b3467dfe01 Lancer 0 787 1085 2022-08-27T03:35:44Z Cheemsthethird 10 Created page with "{{Makeinfo|makename=Lancer|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lancia|rlname=Lancia}} Lancer is a fictional Italian automobile manufacture in Southwest Florida. It is based on [https://www.lancia.com Lancia]. == Vehicles by Lancer == You can find all vehicles by Lancer [[:Category:Lancer|here]]." wikitext text/x-wiki {{Makeinfo|makename=Lancer|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lancia|rlname=Lancia}} Lancer is a fictional Italian automobile manufacture in Southwest Florida. It is based on [https://www.lancia.com Lancia]. == Vehicles by Lancer == You can find all vehicles by Lancer [[:Category:Lancer|here]]. 61827185724c4248ccf8a39010a0e9be4c8588b2 Category:Lancer 14 788 1086 2022-08-27T03:36:06Z Cheemsthethird 10 Created page with "All Lancer vehicles in Southwest Florida." wikitext text/x-wiki All Lancer vehicles in Southwest Florida. b1d2800343119ebc9c2fd0cb154630fefe9a6566 2015 Koneggsaga One:1 0 430 1092 781 2022-08-27T03:55:37Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One Front.png|make=Koneggsaga|type=Hyper|price=$7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under [[Koneggsaga]]. It was sold as a limited for about 2-3 days for $7,900,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}}<gallery> File:One Rear.png File:One Interior.png </gallery> e6e35bc58d8d7b63f5f29aa95f003fc31f21cb69 2022 Lamburghina Countach 0 455 1093 773 2022-08-27T03:59:35Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=New Countach Front.png|make=Lamburghina|type=Super|price=$2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made by [[Lamburghina]] which was sold as a limited for $2,640,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}} == Gallery == [[File:New Countach Rear.png|left|thumb]] <gallery> </gallery> 26448e6a8b32b1cc271cfbf21312b6d1c479dda3 2021 Luxuss LC500 0 48 1100 299 2022-08-27T04:46:57Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2021 Luxuss LC500|image=LC500 Front.png|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=0|electric=0}} The 2021 Luxuss LC500 is a two-door luxury coupe produced by [[Luxuss]]. It can be purchased from the dealership for $102,620. == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} == Gallery == <gallery> File:LC500 Rear.png|Rear view of the Luxuss LC500 File:LC500 Prop.png|The LC500 can also be seen as a display car at the dealership </gallery> 1540d7ed5879ac753df1f97191aadd7b0877ad2a 2020 Toyoto Camry TRD 0 803 1104 2022-08-27T05:38:42Z Aid 4 Added Camry TRD Page wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry TRD|image=Camry TRD Front.png|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Camry]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in Easter 2020, and is unavailable currently to players. == Stats == The Camry has 5 seats and has a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=385|whval=3572|spdval=120|drv=FWD}}{{Maxstats|hpval=1214|tqval=1335|whval=3072|spdval=220}}<gallery> File:Image 2022-08-27 013550605.png|Camry TRD Wing </gallery> 8dd701aad1ab2896cc12b2b69ac128576804fe1f 1105 1104 2022-08-27T05:39:24Z Aid 4 Added Image wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry TRD|image=Camry TRD Front.png|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Camry]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in Easter 2020, and is unavailable currently to players. == Stats == The Camry has 5 seats and has a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=385|whval=3572|spdval=120|drv=FWD}}{{Maxstats|hpval=1214|tqval=1335|whval=3072|spdval=220}}<gallery> File:Camry TRD Back.png File:Image 2022-08-27 013550605.png|Camry TRD Wing </gallery> 0a7228c0e78572b176cde99f48fbf52f424aab70 1106 1105 2022-08-27T05:39:56Z Aid 4 Added image captions wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry TRD|image=Camry TRD Front.png|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Camry]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in Easter 2020, and is unavailable currently to players. == Stats == The Camry has 5 seats and has a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=385|whval=3572|spdval=120|drv=FWD}}{{Maxstats|hpval=1214|tqval=1335|whval=3072|spdval=220}}<gallery> File:Camry TRD Back.png|Camry TRD Rear End File:Image 2022-08-27 013550605.png|Camry TRD Wing </gallery> fab5e6ee6d66512bcaa24d624f8a2e9f377174af 1108 1106 2022-08-27T05:51:58Z Aid 4 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry TRD|image=Camry TRD Front.png|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Camry]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in Easter 2020, and is unavailable currently to players. == Stats == The Camry has 5 seats and has a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=385|whval=3572|spdval=120|drv=FWD}}{{Maxstats|hpval=1214|tqval=1335|whval=3072|spdval=220}} == Gallery == <gallery> File:Camry TRD Back.png|Camry TRD Rear End File:Image 2022-08-27 013550605.png|Camry TRD Wing </gallery> 42adf0423b9d72519f2a78d4fc0c3576c1a3ca65 2020 Toyoto Avalon TRD 0 806 1110 2022-08-27T05:53:30Z Aid 4 Created Page wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Avalon TRD|image=TRD Avalon Front.png|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Avalon|rlname=Toyota Avalon TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Avalon XLE]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in New Years 2022, and is unavailable currently to players. == Stats == The Avalon has 5 seats and has a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3638|spdval=130|drv=FWD}}{{Maxstats|hpval=817|tqval=683|whval=3138|spdval=190}} == Gallery == <gallery> File:TRD Avalon Rear.png|TRD Avalon Rear End </gallery> 27152d140e6c9e44ca2057c0ffb96be053f3cc5f 2013 Fard Mustang GT500 Super Snake 0 76 1112 281 2022-08-27T05:55:48Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image=Super Snake Front.png|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0|electric=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:Super Snake Rear.png|left|thumb|Rear view of the Fard Mustang GT500 Super Snake]] d60821e403297263e5d5b509e2069b0a6b95cd56 1113 1112 2022-08-27T06:01:14Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image=Super Snake Front.png|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0|electric=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:Super Snake Rear.png|left|thumb|Rear view of the Fard Mustang GT500 Super Snake]] [[File:Super Snake Intercooler.png|center|thumb|"Super Snake" shown on the radiator of the Fard Mustang GT500 Super Snake]] 379e4c09c575ecfdf2a59dadbf4569ef52822506 2020 Atone Mira DBS Superleggera 0 809 1115 2022-08-27T06:07:30Z Aid 4 Page Created wikitext text/x-wiki {{Carinfo|name=2020 Atone-Mira DBS Superleggera|image=DBS Front.png|make=Atone-Mira|type=Super|price=Free|avail=Given out to Alpha Players|rllink=https://en.wikipedia.org/wiki/Aston_Martin_DBS_Superleggera|rlname=Aston Martin DBS Superlegerra|limited=1|electric=0}} The 2020 Atone-Mira DBS Superleggera is a Grand Tourer made by the brand [[Atone-Mira]]. This vehicle was given to Alpha players for free by the developers. This vehicle, once used as a slot by Apexical (chy_lls), is one of the rarest cars in Southwest Florida. == Stats == The DBS has 2 seats and a max fuel capacity of 20 gallons. {{Stockstats|hpval=715|tqval=655|whval=3732|spdval=210|drv=RWD}}{{Maxstats|hpval=1201|tqval=1198|whval=3232|spdval=225}} == Gallery == <gallery> File:DBS Back.png|DBS Back End </gallery> 545a5d50f4aa6ff53787cb68751be336291a5d46 File:GT2 Rear.jpg 6 814 1120 2022-08-27T06:23:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT2 Front.jpg 6 815 1121 2022-08-27T06:24:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Gallardo Rear.jpg 6 816 1122 2022-08-27T06:24:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Gallardo Front.jpg 6 817 1123 2022-08-27T06:24:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanEVOS Int.jpg 6 818 1124 2022-08-27T06:24:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanEVOS Rear.jpg 6 819 1125 2022-08-27T06:24:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanEVOS Front.jpg 6 820 1126 2022-08-27T06:24:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:MurcielagoSV Rear.jpg 6 821 1127 2022-08-27T06:25:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:MurcielagoSV Front.jpg 6 822 1128 2022-08-27T06:25:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanPerformante Rear.jpg 6 823 1129 2022-08-27T06:25:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanPerformante Front.jpg 6 824 1130 2022-08-27T06:25:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:MurcielagoR Int.jpg 6 825 1131 2022-08-27T06:25:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2012 Mazeri GranTurismo MC 0 826 1132 2022-08-27T06:26:37Z HPtheamazing 9 Created page with "{{Carinfo|name=2012 Mazeri GranTurismo MC|image=MC Front.png|make=Mazeri|type=Coupe|price=$48,500|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Maserati_GranTurismo#GranTurismo_MC_Stradale_(2011%E2%80%932015)|rlname=2012 Maserati Gran Turismo MC Stradale|limited=0|electric=0}} The 2012 Mazeri GranTurismo MC is a 2-door italian sports coupe produced by Mazeri, and can be purchased from the dealership for $48,500. == Stats == The GranTuris..." wikitext text/x-wiki {{Carinfo|name=2012 Mazeri GranTurismo MC|image=MC Front.png|make=Mazeri|type=Coupe|price=$48,500|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Maserati_GranTurismo#GranTurismo_MC_Stradale_(2011%E2%80%932015)|rlname=2012 Maserati Gran Turismo MC Stradale|limited=0|electric=0}} The 2012 Mazeri GranTurismo MC is a 2-door italian sports coupe produced by Mazeri, and can be purchased from the dealership for $48,500. == Stats == The GranTurismo MC seats 2 people and has a maximum fuel capacity of 24 gallons. {{Stockstats|hpval=444|tqval=376|whval=3,902|spdval=188|drv=RWD}}{{Maxstats|hpval=1,414|tqval=1,005|whval=3,402|spdval=247}} == Gallery == [[File:MC Rear.png|left|thumb|Rear view of the GranTurismo MC]] a7449ad355bc68f90a999f3341b3fdfa44311984 1140 1132 2022-08-27T06:29:51Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2012 Mazeri GranTurismo MC|image=MC Front.png|make=Mazeri|type=Coupe|price=$48,500|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Maserati_GranTurismo#GranTurismo_MC_Stradale_(2011%E2%80%932015)|rlname=2012 Maserati Gran Turismo MC Stradale|limited=0|electric=0}} The 2012 Mazeri GranTurismo MC is a 2-door italian sports coupe produced by [[Mazeri]], and can be purchased from the dealership for $48,500. == Stats == The GranTurismo MC seats 2 people and has a maximum fuel capacity of 24 gallons. {{Stockstats|hpval=444|tqval=376|whval=3,902|spdval=188|drv=RWD}}{{Maxstats|hpval=1,414|tqval=1,005|whval=3,402|spdval=247}} == Gallery == [[File:MC Rear.png|left|thumb|Rear view of the GranTurismo MC]] ae67f35880ea42c8cf4549acecb950838d141b13 File:MurcielagoR Rear.jpg 6 827 1133 2022-08-27T06:27:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:MurcielagoR Front.jpg 6 828 1134 2022-08-27T06:27:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanEVO Rear.jpg 6 829 1135 2022-08-27T06:27:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HuracanEVO Front.jpg 6 830 1136 2022-08-27T06:27:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:8C Rear.jpg 6 831 1137 2022-08-27T06:29:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:8C Front.jpg 6 832 1138 2022-08-27T06:29:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superleggera Rear.jpg 6 833 1139 2022-08-27T06:29:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superleggera Front.jpg 6 834 1141 2022-08-27T06:29:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:05GT Rear.jpg 6 835 1142 2022-08-27T06:30:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:05GT Front.jpg 6 836 1143 2022-08-27T06:30:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2005 Fard GT 0 837 1144 2022-08-27T06:30:36Z S30Z 2 Created page with "{{Carinfo |name=2005 Fard GT |image=05GT_Front.jpg |make=Fard |type=Super |price=$429,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_GT#First_generation_(2005%E2%80%932006) |rlname=Ford GT (1st gen.) |limited=0 |electric=0 }} The 2005 Fard GT is a supercar produced by [[Fard]]. It can be purchased from the dealership for $429,000. ==Stats== The GT has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=550|tqval=500..." wikitext text/x-wiki {{Carinfo |name=2005 Fard GT |image=05GT_Front.jpg |make=Fard |type=Super |price=$429,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_GT#First_generation_(2005%E2%80%932006) |rlname=Ford GT (1st gen.) |limited=0 |electric=0 }} The 2005 Fard GT is a supercar produced by [[Fard]]. It can be purchased from the dealership for $429,000. ==Stats== The GT has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=550|tqval=500|whval=3351|spdval=203|drv=RWD}} {{Maxstats|hpval=1290|tqval=936|whval=2851|spdval=250}} ==Gallery== <gallery> File:05GT_Rear.jpg|Rear view of the 2005 Fard GT. </gallery> a9fdf4620cfd2a33233d0f84dec636b2813ee2e5 2011 Lamburghina Gallardo Superleggera 0 838 1145 2022-08-27T06:30:53Z S30Z 2 Created page with "{{Carinfo |name=2011 Lamburghina Gallardo Superleggera |image=Superleggera_Front.jpg |make=Lamburghina |type=Super |price=$214,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Gallardo#Lamborghini_Gallardo_LP_570-4_Superleggera_(2010%E2%80%932013) |rlname=Lamborghini Gallardo LP 570-4 Superleggera |limited=0 |electric=0 }} The 2011 Lamburghina Gallardo Superleggera is a supercar produced by [[Lamburghina]]. It can be purcha..." wikitext text/x-wiki {{Carinfo |name=2011 Lamburghina Gallardo Superleggera |image=Superleggera_Front.jpg |make=Lamburghina |type=Super |price=$214,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Gallardo#Lamborghini_Gallardo_LP_570-4_Superleggera_(2010%E2%80%932013) |rlname=Lamborghini Gallardo LP 570-4 Superleggera |limited=0 |electric=0 }} The 2011 Lamburghina Gallardo Superleggera is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $214,950. ==Stats== The GT has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=562|tqval=398|whval=3153|spdval=201|drv=AWD}} {{Maxstats|hpval=1258|tqval=868|whval=2653|spdval=238}} ==Gallery== <gallery> File:Superleggera_Rear.jpg|Rear view of the 2011 Lamburghina Gallardo Superleggera. </gallery> b342151ace500d7cba3bebd8df11d6b7aff3b754 2010 Alpha 8C Competizione 0 839 1146 2022-08-27T06:31:38Z S30Z 2 Created page with "{{Carinfo |name=2010 Alpha 8C Competizione |image=8C_Front.jpg |make=Alpha |type=Super |price=$301,600 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_8C_Competizione |rlname=Alfa Romeo 8C Competizione |limited=0 |electric=0 }} The 2010 Alpha 8C Competizione is a supercar produced by [[Alpha]]. It can be purchased from the dealership for $301,600. ==Stats== The 8C has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|h..." wikitext text/x-wiki {{Carinfo |name=2010 Alpha 8C Competizione |image=8C_Front.jpg |make=Alpha |type=Super |price=$301,600 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_8C_Competizione |rlname=Alfa Romeo 8C Competizione |limited=0 |electric=0 }} The 2010 Alpha 8C Competizione is a supercar produced by [[Alpha]]. It can be purchased from the dealership for $301,600. ==Stats== The 8C has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=444|tqval=331|whval=3660|spdval=180|drv=RWD}} {{Maxstats|hpval=1414|tqval=1277|whval=3160|spdval=208}} ==Gallery== <gallery> File:8C_Rear.jpg|Rear view of the 2010 Alpha 8C Competizione. </gallery> 038000dfdb37fb80b597c35b2d64a73d77c0c04e 2020 Lamburghina Huracan EVO 0 840 1147 2022-08-27T06:32:01Z S30Z 2 Created page with "{{Carinfo |name=2020 Lamburghina Huracan EVO |image=HuracanEVO_Front.jpg |make=Lamburghina |type=Super |price=$309,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_Evo_(2019%E2%80%93present) |rlname=Lamborghini Huracan Evo |limited=0 |electric=0 }} The 2020 Lamburghina Huracan EVO is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $309,995. ==Stats== The Huraca..." wikitext text/x-wiki {{Carinfo |name=2020 Lamburghina Huracan EVO |image=HuracanEVO_Front.jpg |make=Lamburghina |type=Super |price=$309,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_Evo_(2019%E2%80%93present) |rlname=Lamborghini Huracan Evo |limited=0 |electric=0 }} The 2020 Lamburghina Huracan EVO is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $309,995. ==Stats== The Huracan EVO has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=571|tqval=413|whval=3135|spdval=199|drv=RWD}} {{Maxstats|hpval=1297|tqval=1311|whval=2547|spdval=211}} ==Gallery== <gallery> File:HuracanEVO_Rear.jpg|Rear view of the 2020 Lamburghina Huracan EVO. </gallery> e4df90ef7956dc7392f5210dffc16a051446253b 2003 Lamburghina Murcielago Roadster 0 841 1148 2022-08-27T06:32:24Z S30Z 2 Created page with "{{Carinfo |name=2003 Lamburghina Murcielago Roadster |image=MurcielagoR_Front.jpg |make=Lamburghina |type=Super |price=$249,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Murci%C3%A9lago#Murci%C3%A9lago_Roadster_(2004%E2%80%932006) |rlname=Lamborghini Murciélago Roadster |limited=0 |electric=0 }} The 2003 Lamburghina Murcielago Roadster is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership fo..." wikitext text/x-wiki {{Carinfo |name=2003 Lamburghina Murcielago Roadster |image=MurcielagoR_Front.jpg |make=Lamburghina |type=Super |price=$249,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Murci%C3%A9lago#Murci%C3%A9lago_Roadster_(2004%E2%80%932006) |rlname=Lamborghini Murciélago Roadster |limited=0 |electric=0 }} The 2003 Lamburghina Murcielago Roadster is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $249,995. ==Stats== The Murcielago Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=571|tqval=479|whval=3671|spdval=204|drv=AWD}} {{Maxstats|hpval=1267|tqval=841|whval=3171|spdval=206}} ==Gallery== <gallery> File:MurcielagoR_Rear.jpg|Rear view of the 2003 Lamburghina Murcielago Roadster. File:MurcielagoR_Int.jpg|Interior shot of the 2003 Lamburghina Murcielago Roadster. </gallery> f68a666179a3c966826cc8db66842438df0789ec 2018 Lamburghina Huracan Performante 0 843 1150 2022-08-27T06:32:48Z S30Z 2 Created page with "{{Carinfo |name=2018 Lamburghina Huracan Performante |image=HuracanPerformante_Front.jpg |make=Lamburghina |type=Super |price=$264,300 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_LP_640-4_Performante_(2017%E2%80%932019) |rlname=Lamborghini Huracán LP 640-4 Performante |limited=0 |electric=0 }} The 2018 Lamburghina Huracan Performante is a supercar produced by [[Lamburghina]]. It can be purchased..." wikitext text/x-wiki {{Carinfo |name=2018 Lamburghina Huracan Performante |image=HuracanPerformante_Front.jpg |make=Lamburghina |type=Super |price=$264,300 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_LP_640-4_Performante_(2017%E2%80%932019) |rlname=Lamborghini Huracán LP 640-4 Performante |limited=0 |electric=0 }} The 2018 Lamburghina Huracan Performante is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $264,300. ==Stats== The Huracan Performante has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=630|tqval=473|whval=3047|spdval=201|drv=AWD}} {{Maxstats|hpval=1336|tqval=1284|whval=2547|spdval=208}} ==Gallery== <gallery> File:HuracanPerformante_Rear.jpg|Rear view of the 2018 Lamburghina Huracan Performante. </gallery> 2b221e64ee4a80267622e8bf5f80a84e89af4a70 2010 Lamburghina Murcielago SV 0 845 1152 2022-08-27T06:33:09Z S30Z 2 Created page with "{{Carinfo |name=2010 Lamburghina Murcielago SV |image=MurcielagoSV_Front.jpg |make=Lamburghina |type=Super |price=$313,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Murci%C3%A9lago |rlname=Lamborghini Murciélago LP 670–4 SV |limited=0 |electric=0 }} The 2010 Lamburghina Murcielago SV is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $313,550. ==Stats== The Murcielago SV has 2 sea..." wikitext text/x-wiki {{Carinfo |name=2010 Lamburghina Murcielago SV |image=MurcielagoSV_Front.jpg |make=Lamburghina |type=Super |price=$313,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Murci%C3%A9lago |rlname=Lamborghini Murciélago LP 670–4 SV |limited=0 |electric=0 }} The 2010 Lamburghina Murcielago SV is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $313,550. ==Stats== The Murcielago SV has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=661|tqval=487|whval=3450|spdval=201|drv=AWD}} {{Maxstats|hpval=1267|tqval=841|whval=3171|spdval=206}} ==Gallery== <gallery> File:MurcielagoSV_Rear.jpg|Rear view of the 2010 Lamburghina Murcielago SV. </gallery> c3b4ba03ccbd62e51bc7d1f84a054d052eb861bd 2020 Lamburghina Huracan EVO Spyder 0 846 1153 2022-08-27T06:33:33Z S30Z 2 Created page with "{{Carinfo |name=2020 Lamburghina Huracan EVO Spyder |image=HuracanEVOS_Front.jpg |make=Lamburghina |type=Super |price=$319,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_Evo_(2019%E2%80%93present) |rlname=Lamborghini Huracan Evo Spyder |limited=0 |electric=0 }} The 2020 Lamburghina Huracan EVO Spyder is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $319,995...." wikitext text/x-wiki {{Carinfo |name=2020 Lamburghina Huracan EVO Spyder |image=HuracanEVOS_Front.jpg |make=Lamburghina |type=Super |price=$319,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_Evo_(2019%E2%80%93present) |rlname=Lamborghini Huracan Evo Spyder |limited=0 |electric=0 }} The 2020 Lamburghina Huracan EVO Spyder is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $319,995. ==Stats== The Huracan EVO Spyder has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=571|tqval=413|whval=3327|spdval=199|drv=RWD}} {{Maxstats|hpval=1297|tqval=1311|whval=2827|spdval=211}} ==Gallery== <gallery> File:HuracanEVOS_Rear.jpg|Rear view of the 2020 Lamburghina Huracan EVO Spyder. File:HuracanEVOS_Int.jpg|Interior shot of the 2020 Lamburghina Huracan EVO Spyder. </gallery> 62af918e388f8513761d19bc3e16465cb10d028f 2008 Lamburghina Gallardo 0 847 1154 2022-08-27T06:33:56Z S30Z 2 Created page with "{{Carinfo |name=2008 Lamburghina Gallardo |image=Gallardo_Front.jpg |make=Lamburghina |type=Super |price=$143,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Gallardo |rlname=Lamborghini Gallardo (1st gen) |limited=0 |electric=0 }} The 2008 Lamburghina Gallardo is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $143,500. ==Stats== The Gallardo has 2 seats and a fuel capacity of 23 gall..." wikitext text/x-wiki {{Carinfo |name=2008 Lamburghina Gallardo |image=Gallardo_Front.jpg |make=Lamburghina |type=Super |price=$143,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Gallardo |rlname=Lamborghini Gallardo (1st gen) |limited=0 |electric=0 }} The 2008 Lamburghina Gallardo is a supercar produced by [[Lamburghina]]. It can be purchased from the dealership for $143,500. ==Stats== The Gallardo has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=511|tqval=384|whval=3153|spdval=195|drv=AWD}} {{Maxstats|hpval=1208|tqval=833|whval=2653|spdval=229}} ==Gallery== <gallery> File:Gallardo_Rear.jpg|Rear view of the 2008 Lamburghina Gallardo. </gallery> 07b0fb087bc2b958f7118d57e151af2ac2f25342 2012 Pohrse 911 GT2 RS 0 849 1156 2022-08-27T06:34:24Z S30Z 2 Created page with "{{Carinfo |name=2012 Pohrse 911 GT2 RS |image=GT2_Front.jpg |make=Pohrse |type=Super |price=$605,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT2#997_GT2_RS |rlname=Porsche 991 GT2 RS (997) |limited=0 |electric=0 }} The 2012 Pohrse 911 GT2 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $605,000. ==Stats== The 911 GT2 RS has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|..." wikitext text/x-wiki {{Carinfo |name=2012 Pohrse 911 GT2 RS |image=GT2_Front.jpg |make=Pohrse |type=Super |price=$605,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT2#997_GT2_RS |rlname=Porsche 991 GT2 RS (997) |limited=0 |electric=0 }} The 2012 Pohrse 911 GT2 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $605,000. ==Stats== The 911 GT2 RS has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=620|tqval=516|whval=3020|spdval=200|drv=RWD}} {{Maxstats|hpval=1308|tqval=1018|whval=2520|spdval=228}} ==Gallery== <gallery> File:GT2_Rear.jpg|Rear view of the 2012 Pohrse 911 GT2 RS. </gallery> 6a482811142b7bf938a3171ebad18a9b11d99d7b 1210 1156 2022-08-28T00:57:55Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2012 Pohrse 911 GT2 RS |image=GT2_Front.jpg |make=Pohrse |type=Super |price=$605,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT2#997_GT2_RS |rlname=Porsche 911 GT2 RS (997) |limited=0 |electric=0 }} The 2012 Pohrse 911 GT2 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $605,000. ==Stats== The 911 GT2 RS has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=620|tqval=516|whval=3020|spdval=200|drv=RWD}} {{Maxstats|hpval=1308|tqval=1018|whval=2520|spdval=228}} ==Gallery== <gallery> File:GT2_Rear.jpg|Rear view of the 2012 Pohrse 911 GT2 RS. </gallery> 9ede957a731c9120974a390bec510e5bfa869e23 1963 Furai 250 GTO 0 465 1158 769 2022-08-27T06:34:58Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced on May 13th, 2022 in the tuning update and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 250 GTO has 2 seats and a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 6af47145cd2aeb4c4d9024765de64bf87cba8702 1162 1158 2022-08-27T06:37:50Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced on May 13th, 2022 in the tuning update and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 250 GTO seats 2 people and has a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] 27dbfb0a35b67d9500b8714a7ba1795ba31ca0a6 1197 1162 2022-08-27T16:49:23Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced on May 13, 2022 in the tuning update and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 250 GTO seats 2 people and has a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] dbb8a4a06325c4868c13c69fd801d1649d2c68e7 1198 1197 2022-08-27T16:51:08Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.png|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced on May 13, 2022 and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 250 GTO seats 2 people and has a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.png|left|thumb|Rear view of the 250 GTO]] f8cc735e1dd0a4d8349c4000fb66d0c1151733a6 2015 Koneggsaga One:1 0 430 1160 1092 2022-08-27T06:35:50Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One Front.png|make=Koneggsaga|type=Hyper|price=$7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under [[Koneggsaga]]. It was sold as a limited for about 2-3 days for $7,900,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}} == Gallery == <gallery> File:One Rear.png File:One Interior.png </gallery> e550db16a027b1720ae269f17aa0b210330372fb 2018 Dodje Challenger Demon 0 329 1163 696 2022-08-27T06:38:23Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.png|make=Dodje|type=Coupe|price=$86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} The 2018 Dodje Challenger Demon is a 2-door American muscle car produced by [[Dodje]], and can be purchased from the dealership for $86,390. == Stats == The Demon seats 4 people and has a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=840|tqval=717|whval=4,280|spdval=202|drv=RWD}}{{Maxstats|hpval=1,423|tqval=1,540|whval=3,780|spdval=207}} == Gallery == [[File:Demon back.png|left|thumb|Rear visual of the 2018 Dodje Challenger Demon]] 0d32050dc994071dfb0a77f2c8a4946d7dda03b1 2009 Naan 350Z Nizmo 0 886 1199 2022-08-27T19:39:54Z Cheemsthethird 10 Created page with "{{DISPLAYTITLE:2009 Naan 350z Nizmo}} {{Carinfo|name=2009 Naan 350z Nizmo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350z Nismo|limited=1|electric=0}} The 2009 Naan 350z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350z]]. It was limited car that is..." wikitext text/x-wiki {{DISPLAYTITLE:2009 Naan 350z Nizmo}} {{Carinfo|name=2009 Naan 350z Nizmo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350z Nismo|limited=1|electric=0}} The 2009 Naan 350z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350z]]. It was limited car that is no longer available for purchased at the dealership, its estimate price was $38,680. == Stats == The 350z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == 5bee71da2dc1a278065a5d6f8e99a27cd9288618 1200 1199 2022-08-27T19:41:50Z Cheemsthethird 10 wikitext text/x-wiki {{DISPLAYTITLE:2009 Naan 350z Nizmo}} {{Carinfo|name=2009 Naan 350z Nizmo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350z Nismo|limited=1|electric=0}} The 2009 Naan 350z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350z]]. It was limited car that is no longer available for purchased at the dealership, its estimate price was $38,680. == Stats == The 350z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == {{DEFAULTSORT:2009_Naan_350z_Nizmo}} 35edbb8a1cf811b6d516e05e7a7755329ccbbd9f 1201 1200 2022-08-27T19:43:44Z Cheemsthethird 10 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350z Nismo|limited=1|electric=0}} The 2009 Naan 350z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350z]]. It was limited car that is no longer available for purchased at the dealership, its estimate price was $38,680. == Stats == The 350z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == 5c4c44b8624e30230f4e4a6327b5173512ce8749 1202 1201 2022-08-27T20:16:26Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == 6975b8127010c8a8fae5ce57b2fae34585c58d4e 1203 1202 2022-08-27T20:16:40Z S30Z 2 S30Z moved page [[2009 Naan 350z Nismo]] to [[2009 Naan 350Z Nismo]] wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == 6975b8127010c8a8fae5ce57b2fae34585c58d4e 1209 1203 2022-08-27T23:48:59Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == <gallery mode="nolines"> File:350Nismo Rear.png|The rear view of the 350z Nizmo. </gallery> 7b6b69519f78e4ca3f70f843af2c94fc6cd33390 2009 Naan 350z Nismo 0 887 1204 2022-08-27T20:16:40Z S30Z 2 S30Z moved page [[2009 Naan 350z Nismo]] to [[2009 Naan 350Z Nismo]] wikitext text/x-wiki #REDIRECT [[2009 Naan 350Z Nismo]] d0c08c5dc116fbf9e66e1b44f42c307dd9966986 Contributing 0 888 1205 2022-08-27T21:37:07Z S30Z 2 Created page with "This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is..." wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki would not be here today if not for MediaWiki. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == todo 176c7072a578e4790d8f379d86bd4eceedee0e3b 1206 1205 2022-08-27T21:38:30Z S30Z 2 wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == todo 6d88a97584621d2c9ceaf21f813ddbcd35628eb9 Main Page 0 1 1207 885 2022-08-27T21:39:11Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! Fun fact: This wiki has a dark mode! You can find it in the menu on the top left. ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Easter Eggs|Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. [[Contributing]] ===For editors=== [[Guides]] 13d38517b3a434c1e710babbcfc20f70976728b4 File:11Vantage Front.jpg 6 889 1211 2022-08-28T01:07:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:11Vantage Rear.jpg 6 890 1212 2022-08-28T01:08:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:M600 Front.jpg 6 891 1213 2022-08-28T01:08:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Vantage Rear.jpg 6 892 1214 2022-08-28T01:08:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Vantage Front.jpg 6 893 1215 2022-08-28T01:08:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:22GT3 Front.jpg 6 894 1216 2022-08-28T01:08:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:22GT3 Rear.jpg 6 895 1217 2022-08-28T01:09:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:22GT3T Front.jpg 6 896 1218 2022-08-28T01:09:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:22GT3T Rear.jpg 6 897 1219 2022-08-28T01:09:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18GT3RS Front.jpg 6 898 1220 2022-08-28T01:09:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18GT3RS Rear.jpg 6 899 1221 2022-08-28T01:09:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18GT3 Front.jpg 6 900 1222 2022-08-28T01:09:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18GT3 Rear.jpg 6 901 1223 2022-08-28T01:10:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20GT Front.jpg 6 902 1224 2022-08-28T01:10:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20GT Rear.jpg 6 903 1225 2022-08-28T01:10:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20GT Engine.jpg 6 904 1226 2022-08-28T01:11:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DB11 Front.jpg 6 905 1227 2022-08-28T01:11:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DB11 Rear.jpg 6 906 1228 2022-08-28T01:11:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spano Front.jpg 6 907 1229 2022-08-28T01:11:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spano Rear.jpg 6 908 1230 2022-08-28T01:12:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spano Engine.jpg 6 909 1231 2022-08-28T01:12:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:M600 Rear.jpg 6 910 1232 2022-08-28T01:13:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2011 Aristo M600 0 911 1233 2022-08-28T01:13:45Z S30Z 2 Created page with "{{Carinfo |name=2011 Aristo M600 |image=M600_Front.jpg |make=Aristo |type=Super |price=$189,539 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Noble_M600 |rlname=Noble M600 |limited=0 |electric=0 }} The 2011 Aristo M600 is a supercar produced by [[Aristo]]. It can be purchased from the dealership for $189,539. ==Stats== The M600 has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=650|tqval=654|whval=2756|spdval=216|drv=R..." wikitext text/x-wiki {{Carinfo |name=2011 Aristo M600 |image=M600_Front.jpg |make=Aristo |type=Super |price=$189,539 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Noble_M600 |rlname=Noble M600 |limited=0 |electric=0 }} The 2011 Aristo M600 is a supercar produced by [[Aristo]]. It can be purchased from the dealership for $189,539. ==Stats== The M600 has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=650|tqval=654|whval=2756|spdval=216|drv=RWD}} {{Maxstats|hpval=1293|tqval=1043|whval=2256|spdval=230}} ==Gallery== <gallery> File:M600_Rear.jpg|Rear view of the 2011 Aristo M600. </gallery> e07f5c99c1f0bb73eea7f91896222d61eea78549 2021 Atone Mira Vantage 0 912 1234 2022-08-28T01:14:13Z S30Z 2 Created page with "{{Carinfo |name=2021 Atone Mira Vantage |image=Vantage_Front.jpg |make=Atone-Mira |type=Super |price=$141,619 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_Vantage_(2018) |rlname=Aston Martin Vantage |limited=0 |electric=0 }} The 2021 Atone Mira Vantage is a supercar produced by [[Atone-Mira]]. It can be purchased from the dealership for $141,619. ==Stats== The Vantage has 2 seats and a fuel capacity of 19 gallons. {{Stoc..." wikitext text/x-wiki {{Carinfo |name=2021 Atone Mira Vantage |image=Vantage_Front.jpg |make=Atone-Mira |type=Super |price=$141,619 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_Vantage_(2018) |rlname=Aston Martin Vantage |limited=0 |electric=0 }} The 2021 Atone Mira Vantage is a supercar produced by [[Atone-Mira]]. It can be purchased from the dealership for $141,619. ==Stats== The Vantage has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=503|tqval=505|whval=3715|spdval=194|drv=RWD}} {{Maxstats|hpval=1099|tqval=1095|whval=3215|spdval=231}} ==Gallery== <gallery> File:Vantage_Rear.jpg|Rear view of the 2021 Atone Mira Vantage. </gallery> 79adb3a8dd0895c4c0dcbad01b28fa8bda823e3c 2022 Pohrse 911 GT3 0 913 1235 2022-08-28T01:14:33Z S30Z 2 Created page with "{{Carinfo |name=2022 Pohrse 911 GT3 |image=22GT3_Front.jpg |make=Pohrse |type=Super |price=$169,260 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#992_GT3 |rlname=Porsche 911 GT3 RS (992) |limited=0 |electric=0 }} The 2022 Pohrse 911 GT3 is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $169,260. ==Stats== The 911 GT3 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=502|..." wikitext text/x-wiki {{Carinfo |name=2022 Pohrse 911 GT3 |image=22GT3_Front.jpg |make=Pohrse |type=Super |price=$169,260 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#992_GT3 |rlname=Porsche 911 GT3 RS (992) |limited=0 |electric=0 }} The 2022 Pohrse 911 GT3 is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $169,260. ==Stats== The 911 GT3 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=502|tqval=346|whval=3164|spdval=194|drv=RWD}} {{Maxstats|hpval=1198|tqval=1041|whval=2664|spdval=232}} ==Gallery== <gallery> File:22GT3_Rear.jpg|Rear view of the 2022 Pohrse 911 GT3. </gallery> 05dfc7e6c5ad44232bfe5eddacc883ea90f86812 2022 Pohrse 911 GT3 Touring 0 914 1236 2022-08-28T01:14:51Z S30Z 2 Created page with "{{Carinfo |name=2022 Pohrse 911 GT3 Touring |image=22GT3T_Front.jpg |make=Pohrse |type=Super |price=$164,930 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#992_GT3 |rlname=Porsche 911 GT3 RS (992) |limited=0 |electric=0 }} The 2022 Pohrse 911 GT3 Touring is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $164,930. ==Stats== The 911 GT3 Touring has 2 seats and a fuel capacity of 17 gallons...." wikitext text/x-wiki {{Carinfo |name=2022 Pohrse 911 GT3 Touring |image=22GT3T_Front.jpg |make=Pohrse |type=Super |price=$164,930 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#992_GT3 |rlname=Porsche 911 GT3 RS (992) |limited=0 |electric=0 }} The 2022 Pohrse 911 GT3 Touring is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $164,930. ==Stats== The 911 GT3 Touring has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=502|tqval=346|whval=3126|spdval=198|drv=RWD}} {{Maxstats|hpval=1198|tqval=986|whval=2615|spdval=235}} ==Gallery== <gallery> File:22GT3T_Rear.jpg|Rear view of the 2022 Pohrse 911 GT3 Touring. </gallery> 9843b6fc75369f842deda0a97b9d6c6bfacf3f9d 2018 Pohrse 911 GT3RS 0 915 1237 2022-08-28T01:15:06Z S30Z 2 Created page with "{{Carinfo |name=2018 Pohrse 911 GT3RS |image=18GT3RS_Front.jpg |make=Pohrse |type=Super |price=$205,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#991_GT3 |rlname=Porsche 991 GT3 RS (991) |limited=0 |electric=0 }} The 2018 Pohrse 911 GT3RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $205,550. ==Stats== The 911 GT3RS has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hp..." wikitext text/x-wiki {{Carinfo |name=2018 Pohrse 911 GT3RS |image=18GT3RS_Front.jpg |make=Pohrse |type=Super |price=$205,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#991_GT3 |rlname=Porsche 991 GT3 RS (991) |limited=0 |electric=0 }} The 2018 Pohrse 911 GT3RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $205,550. ==Stats== The 911 GT3RS has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=513|tqval=346|whval=3152|spdval=192|drv=RWD}} {{Maxstats|hpval=1209|tqval=1051|whval=2653|spdval=232}} ==Gallery== <gallery> File:18GT3RS_Rear.jpg|Rear view of the 2018 Pohrse 911 GT3RS. </gallery> 24fc4259e17fa1f06957c5ddf7867db7d4015793 2018 Pohrse 911 GT3 0 916 1238 2022-08-28T01:15:32Z S30Z 2 Created page with "{{Carinfo |name=2018 Pohrse 911 GT3 |image=18GT3_Front.jpg |make=Pohrse |type=Super |price=$174,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#991_GT3 |rlname=Porsche 991 GT3 (991) |limited=0 |electric=0 }} The 2018 Pohrse 911 GT3 is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $174,500. ==Stats== The 911 GT3 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=500|tqv..." wikitext text/x-wiki {{Carinfo |name=2018 Pohrse 911 GT3 |image=18GT3_Front.jpg |make=Pohrse |type=Super |price=$174,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911_GT3#991_GT3 |rlname=Porsche 991 GT3 (991) |limited=0 |electric=0 }} The 2018 Pohrse 911 GT3 is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $174,500. ==Stats== The 911 GT3 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=500|tqval=339|whval=3115|spdval=194|drv=RWD}} {{Maxstats|hpval=1189|tqval=979|whval=2615|spdval=235}} ==Gallery== <gallery> File:18GT3_Rear.jpg|Rear view of the 2018 Pohrse 911 GT3. </gallery> 009018db241bdd8a79d931467b98c3e2a3cefefe 2020 Fard GT 0 917 1239 2022-08-28T01:16:00Z S30Z 2 Created page with "{{Carinfo |name=2020 Fard GT |image=20GT_Front.jpg |make=Fard |type=Super |price=$1,049,888 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_GT#Second_generation_(2016%E2%80%932022) |rlname=Ford GT (2nd gen.) |limited=0 |electric=0 }} The 2020 Fard GT is a supercar produced by [[Fard]]. It can be purchased from the dealership for $1,049,888. ==Stats== The Fard GT has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=660..." wikitext text/x-wiki {{Carinfo |name=2020 Fard GT |image=20GT_Front.jpg |make=Fard |type=Super |price=$1,049,888 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_GT#Second_generation_(2016%E2%80%932022) |rlname=Ford GT (2nd gen.) |limited=0 |electric=0 }} The 2020 Fard GT is a supercar produced by [[Fard]]. It can be purchased from the dealership for $1,049,888. ==Stats== The Fard GT has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=660|tqval=550|whval=3170|spdval=207|drv=RWD}} {{Maxstats|hpval=1291|tqval=1294|whval=2670|spdval=231}} ==Gallery== <gallery> File:20GT_Rear.jpg|Rear view of the 2020 Fard GT. File:20GT_Engine.jpg|Engine shot of the 2020 Fard GT. </gallery> e884967f7569c08209372f3177ab4e0f3d6e9468 2018 Atone Mira DB11 0 918 1240 2022-08-28T01:16:24Z S30Z 2 Created page with "{{Carinfo |name=2018 Atone Mira DB11 |image=DB11_Front.jpg |make=Atone-Mira |type=Super |price=$155,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_DB11 |rlname=Aston Martin DB11 |limited=0 |electric=0 }} The 2018 Atone Mira DB11 is a supercar produced by [[Atone-Mira]]. It can be purchased from the dealership for $155,950. ==Stats== The DB11 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=630|tqval=51..." wikitext text/x-wiki {{Carinfo |name=2018 Atone Mira DB11 |image=DB11_Front.jpg |make=Atone-Mira |type=Super |price=$155,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_DB11 |rlname=Aston Martin DB11 |limited=0 |electric=0 }} The 2018 Atone Mira DB11 is a supercar produced by [[Atone-Mira]]. It can be purchased from the dealership for $155,950. ==Stats== The DB11 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=630|tqval=516|whval=4134|spdval=206|drv=RWD}} {{Maxstats|hpval=1134|tqval=1043|whval=3634|spdval=244}} ==Gallery== <gallery> File:DB11_Rear.jpg|Rear view of the 2018 Atone Mira DB11. </gallery> 028f8ea646254b0e584dfe9a44c63055fd34a8dc 2013 Esperanza GTA Spano 0 919 1241 2022-08-28T01:16:54Z S30Z 2 Created page with "{{Carinfo |name=2013 Esperanza GTA Spano |image=Spano_Front.jpg |make=Esperanza |type=Super |price=$1,592,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Spania_GTA_Spano |rlname=Spania GTA Spano |limited=0 |electric=0 }} The 2013 Esperanza GTA Spano is a supercar produced by [[Esperanza]]. It can be purchased from the dealership for $1,592,400. ==Stats== The GTA Spano has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpva..." wikitext text/x-wiki {{Carinfo |name=2013 Esperanza GTA Spano |image=Spano_Front.jpg |make=Esperanza |type=Super |price=$1,592,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Spania_GTA_Spano |rlname=Spania GTA Spano |limited=0 |electric=0 }} The 2013 Esperanza GTA Spano is a supercar produced by [[Esperanza]]. It can be purchased from the dealership for $1,592,400. ==Stats== The GTA Spano has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=821|tqval=708|whval=2976|spdval=198|drv=RWD}} {{Maxstats|hpval=1593|tqval=1417|whval=2476|spdval=241}} ==Gallery== <gallery> File:Spano_Rear.jpg|Rear view of the 2013 Esperanza GTA Spano. File:Spano_Engine.jpg|Engine shot of the 2013 Esperanza GTA Spano. </gallery> 68b8f1e9a418f86d91f4fe6070efacfc01785d26 2011 Atone Mira V12 Vantage 0 920 1242 2022-08-28T01:17:11Z S30Z 2 Created page with "{{Carinfo |name=2011 Atone Mira V12 Vantage |image=11Vantage_Front.jpg |make=Atone-Mira |type=Super |price=$137,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_Vantage_(2005)#V12_Vantage= |rlname=Aston Martin V12 Vantage |limited=0 |electric=0 }} The 2011 Atone Mira V12 Vantage is a supercar produced by [[Atone-Mira]]. It can be purchased from the dealership for $137,450. ==Stats== The V12 Vantage has 2 seats and a fuel..." wikitext text/x-wiki {{Carinfo |name=2011 Atone Mira V12 Vantage |image=11Vantage_Front.jpg |make=Atone-Mira |type=Super |price=$137,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_Vantage_(2005)#V12_Vantage= |rlname=Aston Martin V12 Vantage |limited=0 |electric=0 }} The 2011 Atone Mira V12 Vantage is a supercar produced by [[Atone-Mira]]. It can be purchased from the dealership for $137,450. ==Stats== The V12 Vantage has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=510|tqval=420|whval=3704|spdval=189|drv=RWD}} {{Maxstats|hpval=1160|tqval=1001|whval=3204|spdval=206}} ==Gallery== <gallery> File:11Vantage_Rear.jpg|Rear view of the 2011 Atone Mira V12 Vantage. </gallery> edb0392ed6dd7cc41a580405b375f599c1ae72fd 2009 Naan 350Z Nizmo 0 886 1244 1209 2022-08-28T01:59:14Z Aid 4 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == <gallery mode="nolines"> </gallery> [[File:350Nismo Rear.png|thumb]] 3571e2093eeee4632c8824aedde41dd8fe2d43a6 File:10Viper Rear.jpg 6 921 1245 2022-08-28T04:00:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:10Viper Front.jpg 6 922 1246 2022-08-28T04:00:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:08R8 Rear.jpg 6 923 1247 2022-08-28T04:00:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:08R8 Front.jpg 6 924 1248 2022-08-28T04:00:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:620R Cockpit.jpg 6 925 1249 2022-08-28T04:01:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:620R Rear.jpg 6 926 1250 2022-08-28T04:01:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:620R Front.jpg 6 927 1251 2022-08-28T04:01:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mono Cockpit.jpg 6 928 1252 2022-08-28T04:01:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mono Rear.jpg 6 929 1253 2022-08-28T04:01:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mono Front.jpg 6 930 1254 2022-08-28T04:01:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:X-Bow Cockpit.jpg 6 931 1255 2022-08-28T04:01:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:X-Bow Rear.jpg 6 932 1256 2022-08-28T04:02:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:X-Bow Front.jpg 6 933 1257 2022-08-28T04:02:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CTR-3 Rear.jpg 6 934 1258 2022-08-28T04:02:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CTR-3 Front.jpg 6 935 1259 2022-08-28T04:02:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Senna Rear.jpg 6 936 1260 2022-08-28T04:03:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Senna Front.jpg 6 937 1261 2022-08-28T04:03:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S7 Rear.jpg 6 938 1262 2022-08-28T04:04:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S7 Front.jpg 6 939 1263 2022-08-28T04:04:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:98Viper Rear.jpg 6 940 1264 2022-08-28T04:04:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:98Viper Front.jpg 6 941 1265 2022-08-28T04:04:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SL65 Rear.jpg 6 942 1266 2022-08-28T04:04:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SL65 Front.jpg 6 943 1267 2022-08-28T04:05:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:17Viper Rear.jpg 6 944 1268 2022-08-28T04:05:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:17Viper Front.jpg 6 945 1269 2022-08-28T04:05:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 Dodje Viper SRT 0 946 1270 2022-08-28T04:06:34Z S30Z 2 Created page with "{{Carinfo |name=2017 Dodje Viper SRT |image=17Viper_Front.jpg |make=Dodje |type=Super |price=$126,050 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Fifth_generation_(VX,_2013%E2%80%932017) |rlname=Dodge Viper (5th gen.) |limited=0 |electric=0 }} The 2017 Dodje Viper SRT is a supercar produced by [[Dodje]]. It can be purchased from the dealership for $126,050. ==Stats== The Viper has 2 seats and a fuel capacity of 16 gallons..." wikitext text/x-wiki {{Carinfo |name=2017 Dodje Viper SRT |image=17Viper_Front.jpg |make=Dodje |type=Super |price=$126,050 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Fifth_generation_(VX,_2013%E2%80%932017) |rlname=Dodge Viper (5th gen.) |limited=0 |electric=0 }} The 2017 Dodje Viper SRT is a supercar produced by [[Dodje]]. It can be purchased from the dealership for $126,050. ==Stats== The Viper has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=640|tqval=600|whval=3353|spdval=208|drv=RWD}} {{Maxstats|hpval=1349|tqval=974|whval=2853|spdval=230}} ==Gallery== <gallery> File:17Viper_Rear.jpg|Rear view of the 2017 Dodje Viper SRT. </gallery> b8dc331471f244b99baff9d040cdbf663b7f67a0 File:LFA Rear.jpg 6 947 1271 2022-08-28T04:06:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LFA Front.jpg 6 948 1272 2022-08-28T04:07:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2009 Muaraci-Bens SL65 AGM Black Series 0 949 1273 2022-08-28T04:07:46Z S30Z 2 Created page with "{{Carinfo |name=2009 Muaraci-Bens SL65 AGM Black Series |image=SL65_Front.jpg |make=Muaraci-Bens |type=Super |price=$185,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SL-Class_(R230)#SL_65_AMG_Black_Series_(2008%E2%80%932011) |rlname=Mercedes-Benz SL 65 AMG Black Series |limited=0 |electric=0 }} The 2009 Muaraci-Bens SL65 AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It can be purchased from the dealersh..." wikitext text/x-wiki {{Carinfo |name=2009 Muaraci-Bens SL65 AGM Black Series |image=SL65_Front.jpg |make=Muaraci-Bens |type=Super |price=$185,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SL-Class_(R230)#SL_65_AMG_Black_Series_(2008%E2%80%932011) |rlname=Mercedes-Benz SL 65 AMG Black Series |limited=0 |electric=0 }} The 2009 Muaraci-Bens SL65 AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $185,000. ==Stats== The SL65 AGM Black Series has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=670|tqval=738|whval=4345|spdval=199|drv=RWD}} {{Maxstats|hpval=1212|tqval=934|whval=3845|spdval=216}} ==Gallery== <gallery> File:SL65_Rear.jpg|Rear view of the 2009 Muaraci-Bens SL65 AGM Black Series. </gallery> ceaafa2e35adb7916bf6cd58edd38a1a14e38f63 1998 Dodje Viper GTS 0 950 1274 2022-08-28T04:08:29Z S30Z 2 Created page with "{{Carinfo |name=1998 Dodje Viper GTS |image=98Viper_Front.jpg |make=Dodje |type=Super |price=$85,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Second_generation_(SR_II,_1996%E2%80%932002) |rlname=Dodge Viper (2nd gen.) |limited=0 |electric=0 }} The 1998 Dodje Viper GTS is a supercar produced by [[Dodje]]. It can be purchased from the dealership for $85,950. ==Stats== The Viper GTS has 2 seats and a fuel capacity of 19 g..." wikitext text/x-wiki {{Carinfo |name=1998 Dodje Viper GTS |image=98Viper_Front.jpg |make=Dodje |type=Super |price=$85,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Second_generation_(SR_II,_1996%E2%80%932002) |rlname=Dodge Viper (2nd gen.) |limited=0 |electric=0 }} The 1998 Dodje Viper GTS is a supercar produced by [[Dodje]]. It can be purchased from the dealership for $85,950. ==Stats== The Viper GTS has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=450|tqval=490|whval=3444|spdval=180|drv=RWD}} {{Maxstats|hpval=1144|tqval=922|whval=2944|spdval=225}} ==Gallery== <gallery> File:98Viper_Rear.jpg|Rear view of the 1998 Dodje Viper GTS. </gallery> 1d2fc6dc89942478ac10a991e95014e4fd89a4a3 2007 Salane S7 0 951 1275 2022-08-28T04:08:52Z S30Z 2 Created page with "{{Carinfo |name=2007 Salane S7 |image=S7_Front.jpg |make=Salane |type=Super |price=$650,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Saleen_S7 |rlname=Saleen S7 |limited=0 |electric=0 }} The 2007 Salane S7 is a supercar produced by [[Salane]]. It can be purchased from the dealership for $650,000. ==Stats== The S7 has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=750|tqval=700|whval=2950|spdval=216|drv=RWD}} {{Maxs..." wikitext text/x-wiki {{Carinfo |name=2007 Salane S7 |image=S7_Front.jpg |make=Salane |type=Super |price=$650,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Saleen_S7 |rlname=Saleen S7 |limited=0 |electric=0 }} The 2007 Salane S7 is a supercar produced by [[Salane]]. It can be purchased from the dealership for $650,000. ==Stats== The S7 has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=750|tqval=700|whval=2950|spdval=216|drv=RWD}} {{Maxstats|hpval=1406|tqval=989|whval=2450|spdval=222}} ==Gallery== <gallery> File:S7_Rear.jpg|Rear view of the 2007 Salane S7. </gallery> 7981e62354d5c91fbee582d76c29c57a6c22f6d6 2020 McFaren Senna 0 952 1276 2022-08-28T04:09:16Z S30Z 2 Created page with "{{Carinfo |name=2020 McFaren Senna |image=Senna_Front.jpg |make=McFaren |type=Super |price=$1,249,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_Senna |rlname=McLaren Senna |limited=0 |electric=0 }} The 2020 McFaren Senna is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $1,249,000. ==Stats== The Senna has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=789|tqval=590|whval=2641..." wikitext text/x-wiki {{Carinfo |name=2020 McFaren Senna |image=Senna_Front.jpg |make=McFaren |type=Super |price=$1,249,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_Senna |rlname=McLaren Senna |limited=0 |electric=0 }} The 2020 McFaren Senna is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $1,249,000. ==Stats== The Senna has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=789|tqval=590|whval=2641|spdval=184|drv=RWD}} {{Maxstats|hpval=1312|tqval=1016|whval=2141|spdval=211}} ==Gallery== <gallery> File:Senna_Rear.jpg|Rear view of the 2020 McFaren Senna. </gallery> 023db44430e499eca17cc3edf1fed978ce52c668 2011 Luxuss LFA 0 953 1277 2022-08-28T04:09:41Z S30Z 2 Created page with "{{Carinfo |name=2011 Luxuss LFA |image=LFA_Front.jpg |make=Luxuss |type=Super |price=$690,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lexus_LFA |rlname=Lexus LFA |limited=0 |electric=0 }} The 2011 Luxuss LFA is a supercar produced by [[Luxuss]]. It can be purchased from the dealership for $690,500. ==Stats== The LFA has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=552|tqval=354|whval=3263|spdval=202|drv=RWD}} {{..." wikitext text/x-wiki {{Carinfo |name=2011 Luxuss LFA |image=LFA_Front.jpg |make=Luxuss |type=Super |price=$690,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lexus_LFA |rlname=Lexus LFA |limited=0 |electric=0 }} The 2011 Luxuss LFA is a supercar produced by [[Luxuss]]. It can be purchased from the dealership for $690,500. ==Stats== The LFA has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=552|tqval=354|whval=3263|spdval=202|drv=RWD}} {{Maxstats|hpval=1195|tqval=998|whval=2763|spdval=221}} ==Gallery== <gallery> File:LFA_Rear.jpg|Rear view of the 2011 Luxuss LFA. </gallery> a411fade05a66ac59509f82ed5a2a714f335fd21 2010 LUF CTR-3 0 954 1279 2022-08-28T04:11:36Z S30Z 2 Created page with "{{Carinfo |name=2010 LUF CTR-3 |image=CTR-3_Front.jpg |make=LUF |type=Super |price=$850,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ruf_CTR3 |rlname=Ruf CTR3 |limited=0 |electric=0 }} The 2010 LUF CTR-3 is a supercar produced by [[LUF]]. It can be purchased from the dealership for $850,000. ==Stats== The CTR-3 has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=691|tqval=656|whval=3086|spdval=226|drv=RWD}} {{Maxsta..." wikitext text/x-wiki {{Carinfo |name=2010 LUF CTR-3 |image=CTR-3_Front.jpg |make=LUF |type=Super |price=$850,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ruf_CTR3 |rlname=Ruf CTR3 |limited=0 |electric=0 }} The 2010 LUF CTR-3 is a supercar produced by [[LUF]]. It can be purchased from the dealership for $850,000. ==Stats== The CTR-3 has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=691|tqval=656|whval=3086|spdval=226|drv=RWD}} {{Maxstats|hpval=1228|tqval=860|whval=2586|spdval=237}} ==Gallery== <gallery> File:CTR-3_Rear.jpg|Rear view of the 2010 LUF CTR-3. </gallery> 621297f35e3ca9b83d7ff6a4f4eb9df9caa04b28 2013 CTM X-Bow R 0 955 1280 2022-08-28T04:11:59Z S30Z 2 Created page with "{{Carinfo |name=2013 CTM X-Bow R |image=X-Bow_Front.jpg |make=CTM |type=Super |price=$82,886 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/KTM_X-Bow |rlname=KTM X-Bow |limited=0 |electric=0 }} The 2013 CTM X-Bow R is a supercar produced by [[CTM]]. It can be purchased from the dealership for $82,886. ==Stats== The X-Bow R has 2 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=300|tqval=296|whval=1742|spdval=179|drv=RWD}} {{..." wikitext text/x-wiki {{Carinfo |name=2013 CTM X-Bow R |image=X-Bow_Front.jpg |make=CTM |type=Super |price=$82,886 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/KTM_X-Bow |rlname=KTM X-Bow |limited=0 |electric=0 }} The 2013 CTM X-Bow R is a supercar produced by [[CTM]]. It can be purchased from the dealership for $82,886. ==Stats== The X-Bow R has 2 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=300|tqval=296|whval=1742|spdval=179|drv=RWD}} {{Maxstats|hpval=852|tqval=809|whval=1242|spdval=199}} ==Gallery== <gallery> File:X-Bow_Rear.jpg|Rear view of the 2013 CTM X-Bow R. File:X-Bow_Cockpit.jpg|Cockpit view of the 2013 CTM X-Bow R. </gallery> 957c894c86e31e7ced5c59c2b117699caba09292 2015 BMC Mono 0 956 1281 2022-08-28T04:12:16Z S30Z 2 Created page with "{{Carinfo |name=2015 BMC Mono |image=Mono_Front.jpg |make=BMC |type=Super |price=$169,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Briggs_Automotive_Company#BAC_Mono= |rlname=BAC Mono |limited=0 |electric=0 }} The 2015 BMC Mono is a supercar produced by [[BMC]]. It can be purchased from the dealership for $169,000. ==Stats== The Mono has 1 seat and a fuel capacity of 9 gallons. {{Stockstats|hpval=280|tqval=207|whval=1190|spdval=1..." wikitext text/x-wiki {{Carinfo |name=2015 BMC Mono |image=Mono_Front.jpg |make=BMC |type=Super |price=$169,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Briggs_Automotive_Company#BAC_Mono= |rlname=BAC Mono |limited=0 |electric=0 }} The 2015 BMC Mono is a supercar produced by [[BMC]]. It can be purchased from the dealership for $169,000. ==Stats== The Mono has 1 seat and a fuel capacity of 9 gallons. {{Stockstats|hpval=280|tqval=207|whval=1190|spdval=172|drv=RWD}} {{Maxstats|hpval=933|tqval=813|whval=1090|spdval=172}} ==Gallery== <gallery> File:Mono_Rear.jpg|Rear view of the 2015 BMC Mono. File:Mono_Cockpit.jpg|Cockpit view of the 2015 BMC Mono. </gallery> 42a87f0ef6844ea6f062e44e6d403016bb77c911 2013 Lateraam Seven 620R 0 957 1282 2022-08-28T04:12:34Z S30Z 2 Created page with "{{Carinfo |name=2013 Lateraam Seven 620R |image=620R_Front.jpg |make=Lateraam |type=Super |price=$65,290 |avail=Can be purchased at the dealership |rllink=https://www.caterhamcars.com/en/models/the-iconic-range/seven-620 |rlname=Caterham Seven 620R |limited=0 |electric=0 }} The 2013 Lateraam Seven 620R is a supercar produced by [[Lateraam]]. It can be purchased from the dealership for $65,290. ==Stats== The Seven 620R has 2 seats and a fuel capacity of 11 gallons. {{S..." wikitext text/x-wiki {{Carinfo |name=2013 Lateraam Seven 620R |image=620R_Front.jpg |make=Lateraam |type=Super |price=$65,290 |avail=Can be purchased at the dealership |rllink=https://www.caterhamcars.com/en/models/the-iconic-range/seven-620 |rlname=Caterham Seven 620R |limited=0 |electric=0 }} The 2013 Lateraam Seven 620R is a supercar produced by [[Lateraam]]. It can be purchased from the dealership for $65,290. ==Stats== The Seven 620R has 2 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=311|tqval=219|whval=1201|spdval=178|drv=RWD}} {{Maxstats|hpval=937|tqval=686|whval=1101|spdval=179}} ==Gallery== <gallery> File:620R_Rear.jpg|Rear view of the 2013 Lateraam Seven 620R. File:620R_Cockpit.jpg|Cockpit view of the 2013 Lateraam Seven 620R. </gallery> 264a96f907fa623db5fd8cecc43e08c4443b8e24 2008 Owdi R8 0 958 1283 2022-08-28T04:12:52Z S30Z 2 Created page with "{{Carinfo |name=2008 Owdi R8 |image=08R8_Front.jpg |make=Owdi |type=Super |price=$82,247 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_R8_(Type_42) |rlname=Audi R8 (1st gen.) |limited=0 |electric=0 }} The 2008 Owdi R8 is a supercar produced by [[Owdi]]. It can be purchased from the dealership for $82,247. ==Stats== The R8 has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=420|tqval=317|whval=3604|spdval=186|drv=AWD..." wikitext text/x-wiki {{Carinfo |name=2008 Owdi R8 |image=08R8_Front.jpg |make=Owdi |type=Super |price=$82,247 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_R8_(Type_42) |rlname=Audi R8 (1st gen.) |limited=0 |electric=0 }} The 2008 Owdi R8 is a supercar produced by [[Owdi]]. It can be purchased from the dealership for $82,247. ==Stats== The R8 has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=420|tqval=317|whval=3604|spdval=186|drv=AWD}} {{Maxstats|hpval=1385|tqval=1213|whval=3104|spdval=200}} ==Gallery== <gallery> File:08R8_Rear.jpg|Rear view of the 2008 Owdi R8. </gallery> 91fd662269ac0788d2fb7b5069c6642f5f715a59 2010 Dodje Viper SRT-10 0 959 1284 2022-08-28T04:13:08Z S30Z 2 Created page with "{{Carinfo |name=2010 Dodje Viper SRT-10 |image=10Viper_Front.jpg |make=Dodje |type=Super |price=$65,906 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Fourth_generation_(ZB_II,_2008%E2%80%932010) |rlname=Dodge Viper (4th gen.) |limited=0 |electric=0 }} The 2010 Dodje Viper SRT-10 is a supercar produced by [[Dodje]]. It can be purchased from the dealership for $65,906. ==Stats== The Viper SRT-10 has 2 seats and a fuel capacit..." wikitext text/x-wiki {{Carinfo |name=2010 Dodje Viper SRT-10 |image=10Viper_Front.jpg |make=Dodje |type=Super |price=$65,906 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Fourth_generation_(ZB_II,_2008%E2%80%932010) |rlname=Dodge Viper (4th gen.) |limited=0 |electric=0 }} The 2010 Dodje Viper SRT-10 is a supercar produced by [[Dodje]]. It can be purchased from the dealership for $65,906. ==Stats== The Viper SRT-10 has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=600|tqval=560|whval=3444|spdval=201|drv=RWD}} {{Maxstats|hpval=1295|tqval=905|whval=2944|spdval=222}} ==Gallery== <gallery> File:10Viper_Rear.jpg|Rear view of the 2010 Dodje Viper SRT-10. </gallery> 1badff41d9861fa73335c91de4deafe687fa96b5 File:RS5 Rear.jpg 6 960 1285 2022-08-28T05:39:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RS5 Front.jpg 6 961 1286 2022-08-28T05:39:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Owdi RS5 0 962 1287 2022-08-28T05:39:55Z S30Z 2 Created page with "{{Carinfo |name=2021 Owdi RS5 |image=RS5_Front.jpg |make=Owdi |type=Coupe |price=$76,145 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A5#RS5 |rlname=Audi RS5 (2nd gen.) |limited=0 |electric=0 }} The 2021 Owdi RS5 is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $76,145. ==Stats== The RS5 has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=445|tqval=398|whval=4096|spdval=172|drv..." wikitext text/x-wiki {{Carinfo |name=2021 Owdi RS5 |image=RS5_Front.jpg |make=Owdi |type=Coupe |price=$76,145 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A5#RS5 |rlname=Audi RS5 (2nd gen.) |limited=0 |electric=0 }} The 2021 Owdi RS5 is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $76,145. ==Stats== The RS5 has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=445|tqval=398|whval=4096|spdval=172|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=3596|spdval=239}} ==Gallery== <gallery> File:RS5_Rear.jpg|Rear view of the 2021 Owdi RS5. </gallery> ade29f4bafdf57bf783a5ea28a12af8fbd3681ca 1288 1287 2022-08-28T06:51:15Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Owdi RS5 |image=RS5_Front.jpg |make=Owdi |type=Coupe |price=$76,145 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A5#RS5 |rlname=Audi RS5 (2nd gen.) |limited=0 |electric=0 }} The 2021 Owdi RS5 is a two door coupe produced by [[Owdi]]. It can be purchased from the dealership for $76,145. ==Stats== The RS5 has 4 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=445|tqval=398|whval=4096|spdval=172|drv=AWD}} {{Maxstats|hpval=1544|tqval=1566|whval=3596|spdval=239}} ==Gallery== <gallery> File:RS5_Rear.jpg|Rear view of the 2021 Owdi RS5. </gallery> 96c39d59c769b7d838060566dfe0e86f10d9b175 File:CivicCoupe Rear.jpg 6 963 1289 2022-08-28T07:30:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CivicCoupe Front.jpg 6 964 1290 2022-08-28T07:30:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2SS Rear.jpg 6 965 1291 2022-08-28T07:30:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2SS Front.jpg 6 966 1292 2022-08-28T07:32:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18M4 Rear.jpg 6 967 1293 2022-08-28T07:32:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18M4 Front.jpg 6 968 1294 2022-08-28T07:33:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C8Vette Rear.jpg 6 969 1295 2022-08-28T07:33:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C8Vette Front.jpg 6 970 1296 2022-08-28T07:33:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2018 BNW M4 0 971 1297 2022-08-28T07:34:05Z S30Z 2 Created page with "{{Carinfo |name=2018 BNW M4 |image=18M4_Front.jpg |make=BNW |type=Coupe |price=$68,700 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M4#First_generation_(F82/F83;_2014) |rlname=BMW M4 (F82) |limited=0 |electric=0 }} The 2018 BNW M4 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $68,700. ==Stats== The M4 has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=445|tqval=381|whval=3620..." wikitext text/x-wiki {{Carinfo |name=2018 BNW M4 |image=18M4_Front.jpg |make=BNW |type=Coupe |price=$68,700 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M4#First_generation_(F82/F83;_2014) |rlname=BMW M4 (F82) |limited=0 |electric=0 }} The 2018 BNW M4 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $68,700. ==Stats== The M4 has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=445|tqval=381|whval=3620|spdval=154|drv=RWD}} {{Maxstats|hpval=1045|tqval=923|whval=3120|spdval=194}} ==Gallery== <gallery> File:18M4_Rear.jpg|Rear view of the 2018 BNW M4. </gallery> 6139e6283df99840a666fba99e699c33b08c4147 2021 Chavy Camaro 2SS 0 972 1298 2022-08-28T07:36:22Z S30Z 2 Created page with "{{Carinfo |name=2021 Chavy Camaro 2SS |image=2SS_Front.jpg |make=Chavy |type=Coupe |price=$57,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro#Sixth_generation_(2016%E2%80%93present) |rlname=Chevrolet Camaro (6th gen.) |limited=0 |electric=0 }} The 2021 Chavy Camaro 2SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $57,590. ==Stats== The Camaro 2SS has 4 seats and a fuel capac..." wikitext text/x-wiki {{Carinfo |name=2021 Chavy Camaro 2SS |image=2SS_Front.jpg |make=Chavy |type=Coupe |price=$57,590 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro#Sixth_generation_(2016%E2%80%93present) |rlname=Chevrolet Camaro (6th gen.) |limited=0 |electric=0 }} The 2021 Chavy Camaro 2SS is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $57,590. ==Stats== The Camaro 2SS has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=454|tqval=473|whval=3686|spdval=181|drv=RWD}} {{Maxstats|hpval=1427|tqval=1211|whval=3186|spdval=255}} ==Gallery== <gallery> File:2SS_Rear.jpg|Rear view of the 2021 Chavy Camaro 2SS. </gallery> c7e7f27428f866c55f62e8a683acb41ce60bae02 2020 Handa Civic Coupe 0 973 1299 2022-08-28T07:38:10Z S30Z 2 Created page with "{{Carinfo |name=2020 Handa Civic Coupe |image=CivicCoupe_Front.jpg |make=Handa |type=Coupe |price=$21,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Tenth_generation_(2015) |rlname=Honda Civic (10th gen.) |limited=0 |electric=0 }} The 2020 Handa Civic Coupe is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $21,850. ==Stats== The Civic Coupe has 4 seats and a fuel capacity of 13 gallo..." wikitext text/x-wiki {{Carinfo |name=2020 Handa Civic Coupe |image=CivicCoupe_Front.jpg |make=Handa |type=Coupe |price=$21,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Tenth_generation_(2015) |rlname=Honda Civic (10th gen.) |limited=0 |electric=0 }} The 2020 Handa Civic Coupe is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $21,850. ==Stats== The Civic Coupe has 4 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=205|tqval=228|whval=2888|spdval=139|drv=FWD}} {{Maxstats|hpval=795|tqval=867|whval=2388|spdval=176}} ==Gallery== <gallery> File:CivicCoupe_Rear.jpg|Rear view of the 2020 Handa Civic Coupe. </gallery> bb205f9ea10d2f132e1fed6978b8ee6c49066ac2 2022 Chavy Corvette 0 974 1300 2022-08-28T07:38:34Z S30Z 2 Created page with "{{Carinfo |name=2021 Chavy Corvette C8 |image=C8Vette_Front.jpg |make=Chavy |type=Coupe |price=$86,945 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2021 Chavy Corvette C8 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $86,945. ==Stats== The Corvette C8 has 2 seats and a..." wikitext text/x-wiki {{Carinfo |name=2021 Chavy Corvette C8 |image=C8Vette_Front.jpg |make=Chavy |type=Coupe |price=$86,945 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2021 Chavy Corvette C8 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $86,945. ==Stats== The Corvette C8 has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=495|tqval=504|whval=3366|spdval=189|drv=RWD}} {{Maxstats|hpval=1475|tqval=1433|whval=2866|spdval=258}} ==Gallery== <gallery> File:C8Vette_Rear.jpg|Rear view of the 2021 Chavy Corvette C8. </gallery> 5101dbffdda481aef2e0b2a253d8beffd268c4fb File:370z front.jpg 6 975 1301 2022-08-28T21:22:10Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370z rear.jpg 6 976 1302 2022-08-28T21:22:34Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370znismo front.jpg 6 977 1303 2022-08-28T21:24:43Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370znismo rear.jpg 6 978 1304 2022-08-28T21:25:19Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 Naan 370Z 0 979 1305 2022-08-28T21:38:23Z Cheemsthethird 10 Created page with "{{Carinfo|name=2017 Naan 370z|image=370z_front.jpg|make=Naan|type=Coupe|price=$32,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#2013_model_year_update_(2012–2020)|rlname=Nissan 370z (Z34)|limited=0|electric=0}} The 2017 Naan 370z is two-seater sportscar manufactured by [[Naan]]. It is the successor to the [[2009 Naan 350Z|Naan 350z]]. It can be purchased from the dealership for $32,998. == Stats == The 370z has two se..." wikitext text/x-wiki {{Carinfo|name=2017 Naan 370z|image=370z_front.jpg|make=Naan|type=Coupe|price=$32,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#2013_model_year_update_(2012–2020)|rlname=Nissan 370z (Z34)|limited=0|electric=0}} The 2017 Naan 370z is two-seater sportscar manufactured by [[Naan]]. It is the successor to the [[2009 Naan 350Z|Naan 350z]]. It can be purchased from the dealership for $32,998. == Stats == The 370z has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=323|tqval=270|whval=3,298|spdval=155|drv=RWD}}{{Maxstats|hpval=1,248|tqval=1,122|whval=2,798|spdval=207}} == Gallery == <gallery> File:370z rear.jpg|The rear view of the 370z. </gallery> 775260b1861c4bf56864a9e2198953a23ce4eacf 1309 1305 2022-08-28T22:24:41Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z|image=370z_front.jpg|make=Naan|type=Coupe|price=$32,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#2013_model_year_update_(2012–2020)|rlname=Nissan 370Z (Z34)|limited=0|electric=0}} The 2017 Naan 370Z is two-seater sportscar manufactured by [[Naan]]. It is the successor to the [[2009 Naan 350Z|Naan 350Z]]. It can be purchased from the dealership for $32,998. == Stats == The 370Z has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=323|tqval=270|whval=3,298|spdval=155|drv=RWD}}{{Maxstats|hpval=1,248|tqval=1,122|whval=2,798|spdval=207}} == Gallery == <gallery> File:370z rear.jpg|The rear view of the 370Z. </gallery> 264dde60769413184b4d1d979e1fd9de9912d013 1312 1309 2022-08-28T22:24:58Z S30Z 2 S30Z moved page [[2017 Naan 370z]] to [[2017 Naan 370Z]] wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z|image=370z_front.jpg|make=Naan|type=Coupe|price=$32,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#2013_model_year_update_(2012–2020)|rlname=Nissan 370Z (Z34)|limited=0|electric=0}} The 2017 Naan 370Z is two-seater sportscar manufactured by [[Naan]]. It is the successor to the [[2009 Naan 350Z|Naan 350Z]]. It can be purchased from the dealership for $32,998. == Stats == The 370Z has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=323|tqval=270|whval=3,298|spdval=155|drv=RWD}}{{Maxstats|hpval=1,248|tqval=1,122|whval=2,798|spdval=207}} == Gallery == <gallery> File:370z rear.jpg|The rear view of the 370Z. </gallery> 264dde60769413184b4d1d979e1fd9de9912d013 2017 Naan 370Z Nizmo 0 980 1306 2022-08-28T21:52:22Z Cheemsthethird 10 Created page with "{{Carinfo|name=2017 Naan 370z Nizmo|image=370znismo_front.jpg|make=Naan|type=Coupe|price=$41,990|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#370Z_NISMO_(2014–2020)|rlname=Nissan 370z NISMO|limited=1|electric=0}} The 2017 Naan 370z Nizmo is a two-seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2017 Naan 370z|Naan 370z]]. It can no longer be purchased at the dealership as it..." wikitext text/x-wiki {{Carinfo|name=2017 Naan 370z Nizmo|image=370znismo_front.jpg|make=Naan|type=Coupe|price=$41,990|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#370Z_NISMO_(2014–2020)|rlname=Nissan 370z NISMO|limited=1|electric=0}} The 2017 Naan 370z Nizmo is a two-seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2017 Naan 370z|Naan 370z]]. It can no longer be purchased at the dealership as it was a limited car, its estimated price was $41,990. == Stats == The 370z Nizmo has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=339|tqval=276|whval=3,384|spdval=155|drv=RWD}}{{Maxstats|hpval=1,272|tqval=1,083|whval=2,884|spdval=209}} == Gallery == <gallery> File:370znismo rear.jpg|The rear view of the Nizmo 370z. </gallery> bec1c0b1c19956f4a733c63207a188c7ec0c68a8 1307 1306 2022-08-28T21:54:09Z Cheemsthethird 10 /* Stats */ wikitext text/x-wiki {{Carinfo|name=2017 Naan 370z Nizmo|image=370znismo_front.jpg|make=Naan|type=Coupe|price=$41,990|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#370Z_NISMO_(2014–2020)|rlname=Nissan 370z NISMO|limited=1|electric=0}} The 2017 Naan 370z Nizmo is a two-seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2017 Naan 370z|Naan 370z]]. It can no longer be purchased at the dealership as it was a limited car, its estimated price was $41,990. == Stats == The 370z Nizmo has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=339|tqval=289|whval=3,384|spdval=155|drv=RWD}}{{Maxstats|hpval=1,272|tqval=1,083|whval=2,884|spdval=209}} == Gallery == <gallery> File:370znismo rear.jpg|The rear view of the Nizmo 370z. </gallery> bc3025616ebd04def3cfd627360647868bc955bd 1308 1307 2022-08-28T22:24:09Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z Nizmo|image=370znismo_front.jpg|make=Naan|type=Coupe|price=$41,990|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#370Z_NISMO_(2014–2020)|rlname=Nissan 370Z NISMO|limited=1|electric=0}} The 2017 Naan 370Z Nizmo is a two-seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2017 Naan 370Z|Naan 370Z]]. It can no longer be purchased at the dealership as it was a limited car, its estimated price was $41,990. == Stats == The 370Z Nizmo has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=339|tqval=289|whval=3,384|spdval=155|drv=RWD}}{{Maxstats|hpval=1,272|tqval=1,083|whval=2,884|spdval=209}} == Gallery == <gallery> File:370znismo rear.jpg|The rear view of the Nizmo 370Z. </gallery> 3f0e90f3664a91ad3169b9c3de8cdc2d78c7f34e 1310 1308 2022-08-28T22:24:52Z S30Z 2 S30Z moved page [[2017 Naan 370z Nizmo]] to [[2017 Naan 370Z Nizmo]] wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z Nizmo|image=370znismo_front.jpg|make=Naan|type=Coupe|price=$41,990|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#370Z_NISMO_(2014–2020)|rlname=Nissan 370Z NISMO|limited=1|electric=0}} The 2017 Naan 370Z Nizmo is a two-seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2017 Naan 370Z|Naan 370Z]]. It can no longer be purchased at the dealership as it was a limited car, its estimated price was $41,990. == Stats == The 370Z Nizmo has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=339|tqval=289|whval=3,384|spdval=155|drv=RWD}}{{Maxstats|hpval=1,272|tqval=1,083|whval=2,884|spdval=209}} == Gallery == <gallery> File:370znismo rear.jpg|The rear view of the Nizmo 370Z. </gallery> 3f0e90f3664a91ad3169b9c3de8cdc2d78c7f34e 2017 Naan 370z Nizmo 0 981 1311 2022-08-28T22:24:52Z S30Z 2 S30Z moved page [[2017 Naan 370z Nizmo]] to [[2017 Naan 370Z Nizmo]] wikitext text/x-wiki #REDIRECT [[2017 Naan 370Z Nizmo]] eec89382729e18f699203c9381709b0807a475f1 2017 Naan 370z 0 982 1313 2022-08-28T22:24:58Z S30Z 2 S30Z moved page [[2017 Naan 370z]] to [[2017 Naan 370Z]] wikitext text/x-wiki #REDIRECT [[2017 Naan 370Z]] 8751fad485c2ffca3736c48698018cc483385bd6 File:18ZL1 Rear.jpg 6 983 1314 2022-08-28T22:40:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18ZL1 Front.jpg 6 984 1315 2022-08-28T22:40:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Carrera4S Rear.jpg 6 985 1316 2022-08-28T22:41:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Carrera4S Front.jpg 6 986 1317 2022-08-28T22:41:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RC-F Rear.jpg 6 987 1318 2022-08-28T22:41:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RC-F Front.jpg 6 988 1319 2022-08-28T22:41:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2000 Front.jpg 6 989 1320 2022-08-28T22:42:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2000 Rear.jpg 6 990 1321 2022-08-28T22:42:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A90 Rear.jpg 6 991 1322 2022-08-28T22:42:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A90 Front.jpg 6 992 1323 2022-08-28T22:42:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18M2 Rear.jpg 6 993 1324 2022-08-28T22:42:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:18M2 Front.jpg 6 994 1325 2022-08-28T22:42:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CaymanGTS Rear.jpg 6 995 1326 2022-08-28T22:42:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CaymanGTS Front.jpg 6 996 1327 2022-08-28T22:43:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:911Targa4S Interior.jpg 6 997 1328 2022-08-28T22:43:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:911Targa4S Rear.jpg 6 998 1329 2022-08-28T22:44:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:911Targa4S Front.jpg 6 999 1330 2022-08-28T22:44:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BoxsterT Interior.jpg 6 1000 1331 2022-08-28T22:45:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BoxsterT Rear.jpg 6 1001 1332 2022-08-28T22:45:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BoxsterT Front.jpg 6 1002 1333 2022-08-28T22:45:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Wraith Rear.jpg 6 1003 1334 2022-08-28T22:46:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Wraith Front.jpg 6 1004 1335 2022-08-28T22:46:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Rolls Rayce Wraith 0 1005 1336 2022-08-28T22:47:51Z S30Z 2 Created page with "{{Carinfo |name=2019 Rolls Rayce Wraith |image=Wraith_Front.jpg |make=Rolls Rayce |type=Coupe |price=$330,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Wraith_(2013) |rlname=Rolls-Royce Wraith |limited=0 |electric=0 }} The 2019 Rolls Rayce Wraith is a two door coupe produced by [[Rolls Rayce]]. It can be purchased from the dealership for $330,000. ==Stats== The Wraith has 4 seats and a fuel capacity of 22 gallons. {{S..." wikitext text/x-wiki {{Carinfo |name=2019 Rolls Rayce Wraith |image=Wraith_Front.jpg |make=Rolls Rayce |type=Coupe |price=$330,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Wraith_(2013) |rlname=Rolls-Royce Wraith |limited=0 |electric=0 }} The 2019 Rolls Rayce Wraith is a two door coupe produced by [[Rolls Rayce]]. It can be purchased from the dealership for $330,000. ==Stats== The Wraith has 4 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=622|tqval=669|whval=5380|spdval=198|drv=RWD}} {{Maxstats|hpval=1193|tqval=1326|whval=4880|spdval=263}} ==Gallery== <gallery> File:Wraith_Rear.jpg|Rear view of the 2019 Rolls Rayce Wraith. </gallery> 561732db2acb0771c475e9f76b789a8f0abda692 2018 Chavy Camaro ZL1 1LE 0 1006 1337 2022-08-28T22:48:42Z S30Z 2 Created page with "{{Carinfo |name=2018 Chavy Camaro ZL1 1LE |image=18ZL1_Front.jpg |make=Chavy |type=Coupe |price=$69,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(sixth_generation)#ZL1 |rlname=Chevrolet Camaro (6th gen.) |limited=0 |electric=0 }} The 2018 Chavy Camaro ZL1 1LE is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $69,995. ==Stats== The Camaro ZL1 1LE has 4 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=2018 Chavy Camaro ZL1 1LE |image=18ZL1_Front.jpg |make=Chavy |type=Coupe |price=$69,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(sixth_generation)#ZL1 |rlname=Chevrolet Camaro (6th gen.) |limited=0 |electric=0 }} The 2018 Chavy Camaro ZL1 1LE is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $69,995. ==Stats== The Camaro ZL1 1LE has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=650|tqval=650|whval=3850|spdval=187|drv=RWD}} {{Maxstats|hpval=1304|tqval=1037|whval=3318|spdval=204}} ==Gallery== <gallery> File:18ZL1_Rear.jpg|Rear view of the 2018 Chavy Camaro ZL1 1LE. </gallery> 267e5a3b9847bd9ffab8dabdc782badbf85f7a16 2020 Pohrse 911 Carrera 4S 0 1007 1338 2022-08-28T22:49:41Z S30Z 2 Created page with "{{Carinfo |name=2020 Pohrse 911 Carrera 4S |image=Carrera4S_Front.jpg |make=Pohrse |type=Coupe |price=$126,290 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992 |rlname=Porsche 911 (992) |limited=0 |electric=0 }} The 2020 Pohrse 911 Carrera 4S is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $126,290. ==Stats== The 911 Carrera 4S has 4 seats and a fuel capacity of 17 gallons. {{Stocksta..." wikitext text/x-wiki {{Carinfo |name=2020 Pohrse 911 Carrera 4S |image=Carrera4S_Front.jpg |make=Pohrse |type=Coupe |price=$126,290 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992 |rlname=Porsche 911 (992) |limited=0 |electric=0 }} The 2020 Pohrse 911 Carrera 4S is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $126,290. ==Stats== The 911 Carrera 4S has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=443|tqval=390|whval=3402|spdval=183|drv=AWD}} {{Maxstats|hpval=1142|tqval=1238|whval=2902|spdval=234}} ==Gallery== <gallery> File:Carrera4S_Rear.jpg|Rear view of the 2020 Pohrse 911 Carrera 4S. </gallery> 694173ac3b659c91c38a661ac47c3f15c86a690f 2020 Luxuss RC-F 0 1008 1339 2022-08-28T22:50:59Z S30Z 2 Created page with "{{Carinfo |name=2020 Luxuss RC-F |image=RC-F_Front.jpg |make=Luxuss |type=Coupe |price=$68,485 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lexus_RC |rlname=Lexus RC-F |limited=0 |electric=0 }} The 2020 Luxuss RC-F is a two door coupe produced by [[Luxuss]]. It can be purchased from the dealership for $68,485. ==Stats== The RC-F has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=472|tqval=395|whval=3902|spdval=167|drv..." wikitext text/x-wiki {{Carinfo |name=2020 Luxuss RC-F |image=RC-F_Front.jpg |make=Luxuss |type=Coupe |price=$68,485 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lexus_RC |rlname=Lexus RC-F |limited=0 |electric=0 }} The 2020 Luxuss RC-F is a two door coupe produced by [[Luxuss]]. It can be purchased from the dealership for $68,485. ==Stats== The RC-F has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=472|tqval=395|whval=3902|spdval=167|drv=RWD}} {{Maxstats|hpval=1111|tqval=900|whval=3237|spdval=212}} ==Gallery== <gallery> File:RC-F_Rear.jpg|Rear view of the 2020 Luxuss RC-F. </gallery> d6b0b34e42868d784971115bdb468cc971e5532a 2009 Handa S2000 0 1009 1340 2022-08-28T22:51:24Z S30Z 2 Created page with "{{Carinfo |name=2009 Handa S2000 |image=S2000_Front.jpg |make=Handa |type=Coupe |price=$31,986 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_S2000 |rlname=Honda S2000 |limited=0 |electric=0 }} The 2009 Handa S2000 is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $31,986. ==Stats== The S2000 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=237|tqval=162|whval=2822|spdval=148..." wikitext text/x-wiki {{Carinfo |name=2009 Handa S2000 |image=S2000_Front.jpg |make=Handa |type=Coupe |price=$31,986 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_S2000 |rlname=Honda S2000 |limited=0 |electric=0 }} The 2009 Handa S2000 is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $31,986. ==Stats== The S2000 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=237|tqval=162|whval=2822|spdval=148|drv=RWD}} {{Maxstats|hpval=1110|tqval=990|whval=2302|spdval=174}} ==Gallery== <gallery> File:S2000_Rear.jpg|Rear view of the 2009 Handa S2000. </gallery> e230323eea81cd04655cef0c704a9935288f03ff 2021 Toyoto Supra 0 1010 1341 2022-08-28T22:51:50Z S30Z 2 Created page with "{{Carinfo |name=2021 Toyoto Supra |image=A90_Front.jpg |make=Toyoto |type=Coupe |price=$53,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Supra#Fifth_generation_(J29/DB;_2019) |rlname=Toyota Supra (5th gen.) |limited=0 |electric=0 }} The 2021 Toyoto Supra is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $53,990. ==Stats== The Supra has 2 seats and a fuel capacity of 13 gallons. {{Stock..." wikitext text/x-wiki {{Carinfo |name=2021 Toyoto Supra |image=A90_Front.jpg |make=Toyoto |type=Coupe |price=$53,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_Supra#Fifth_generation_(J29/DB;_2019) |rlname=Toyota Supra (5th gen.) |limited=0 |electric=0 }} The 2021 Toyoto Supra is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $53,990. ==Stats== The Supra has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=387|tqval=378|whval=3397|spdval=149|drv=RWD}} {{Maxstats|hpval=984|tqval=1090|whval=2897|spdval=195}} ==Gallery== <gallery> File:A90_Rear.jpg|Rear view of the 2021 Toyoto Supra. </gallery> 5394db36ade0282c80d41a133bf1a7cba8ac7c57 2018 BNW M2 0 1011 1342 2022-08-28T22:52:08Z S30Z 2 Created page with "{{Carinfo |name=2018 BNW M2 |image=18M2_Front.jpg |make=BNW |type=Coupe |price=$63,190 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M2 |rlname=BMW M2 |limited=0 |electric=0 }} The 2018 BNW M2 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $63,190. ==Stats== The M2 has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=410|tqval=406|whval=3417|spdval=153|drv=RWD}} {{Maxstats|hpval=..." wikitext text/x-wiki {{Carinfo |name=2018 BNW M2 |image=18M2_Front.jpg |make=BNW |type=Coupe |price=$63,190 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M2 |rlname=BMW M2 |limited=0 |electric=0 }} The 2018 BNW M2 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $63,190. ==Stats== The M2 has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=410|tqval=406|whval=3417|spdval=153|drv=RWD}} {{Maxstats|hpval=1017|tqval=692|whval=2917|spdval=193}} ==Gallery== <gallery> File:18M2_Rear.jpg|Rear view of the 2018 BNW M2. </gallery> cf313b887db7c2ce244f48523c4e3f3c46f91150 2021 Pohrse 718 Cayman GTS 4.0 0 1012 1343 2022-08-28T22:52:35Z S30Z 2 Created page with "{{Carinfo |name=2021 Pohrse 718 Cayman GTS 4.0 |image=CaymanGTS_Front.jpg |make=Pohrse |type=Coupe |price=$89,930 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982 |rlname=Porsche 718 Cayman (982) |limited=0 |electric=0 }} The 2021 Pohrse 718 Cayman GTS 4.0 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $89,930. ==Stats== The Cayman GTS 4.0 has 2 seats and a fuel capacity of 14 gallons...." wikitext text/x-wiki {{Carinfo |name=2021 Pohrse 718 Cayman GTS 4.0 |image=CaymanGTS_Front.jpg |make=Pohrse |type=Coupe |price=$89,930 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982 |rlname=Porsche 718 Cayman (982) |limited=0 |electric=0 }} The 2021 Pohrse 718 Cayman GTS 4.0 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $89,930. ==Stats== The Cayman GTS 4.0 has 2 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=394|tqval=309|whval=3166|spdval=182|drv=RWD}} {{Maxstats|hpval=1081|tqval=890|whval=2597|spdval=204}} ==Gallery== <gallery> File:CaymanGTS_Rear.jpg|Rear view of the 2021 Pohrse 718 Cayman GTS 4.0. </gallery> d5ae8959b7f88226a92704011a0c2e79c5929288 2022 Pohrse 911 Targa 4S 0 1013 1344 2022-08-28T22:52:56Z S30Z 2 Created page with "{{Carinfo |name=2022 Pohrse 911 Targa 4S |image=911Targa4S_Front.jpg |make=Pohrse |type=Coupe |price=$142,360 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992 |rlname=Porsche 911 (992) |limited=0 |electric=0 }} The 2022 Pohrse 911 Targa 4S is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $142,360. ==Stats== The 911 Targa 4S has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hp..." wikitext text/x-wiki {{Carinfo |name=2022 Pohrse 911 Targa 4S |image=911Targa4S_Front.jpg |make=Pohrse |type=Coupe |price=$142,360 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992 |rlname=Porsche 911 (992) |limited=0 |electric=0 }} The 2022 Pohrse 911 Targa 4S is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $142,360. ==Stats== The 911 Targa 4S has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=443|tqval=390|whval=3687|spdval=190|drv=RWD}} {{Maxstats|hpval=1168|tqval=1016|whval=3237|spdval=236}} ==Gallery== <gallery> File:911Targa4S_Rear.jpg|Rear view of the 2022 Pohrse 911 Targa 4S. File:911Targa4S_Interior.jpg|Interior shot of the 2022 Pohrse 911 Targa 4S. </gallery> 4499f39edf2a38bc892660608eeb9972d0eed9bd 2021 Pohrse 718 Boxster T 0 1014 1345 2022-08-28T22:53:18Z S30Z 2 Created page with "{{Carinfo |name=2021 Pohrse 718 Boxster T |image=BoxsterT_Front.jpg |make=Pohrse |type=Coupe |price=$77,960 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982 |rlname=Porsche 718 Boxster (982) |limited=0 |electric=0 }} The 2021 Pohrse 718 Boxster T is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $77,960. ==Stats== The Boxster T has 2 seats and a fuel capacity of 14 gallons. {{Stockstats|..." wikitext text/x-wiki {{Carinfo |name=2021 Pohrse 718 Boxster T |image=BoxsterT_Front.jpg |make=Pohrse |type=Coupe |price=$77,960 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982 |rlname=Porsche 718 Boxster (982) |limited=0 |electric=0 }} The 2021 Pohrse 718 Boxster T is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $77,960. ==Stats== The Boxster T has 2 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=300|tqval=280|whval=3053|spdval=171|drv=RWD}} {{Maxstats|hpval=922|tqval=890|whval=2553|spdval=239}} ==Gallery== <gallery> File:BoxsterT_Rear.jpg|Rear view of the 2021 Pohrse 718 Boxster T. File:BoxsterT_Interior.jpg|Interior shot of the 2021 Pohrse 718 Boxster T. </gallery> e52a61f589bdba1d6e2004513b7e62c34c96ee3a File:CaymanGT4 Rear.jpg 6 1015 1346 2022-08-28T22:55:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CaymanGT4 Front.jpg 6 1016 1347 2022-08-28T22:55:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Pohrse 718 Cayman GT4 0 1017 1348 2022-08-28T22:55:52Z S30Z 2 Created page with "{{Carinfo |name=2021 Pohrse 718 Cayman GT4 |image=CaymanGT4_Front.jpg |make=Pohrse |type=Coupe |price=$104,690 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2021 Pohrse 718 Cayman GT4 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $104,690. ==Stats== The Cayman GT4 has 2..." wikitext text/x-wiki {{Carinfo |name=2021 Pohrse 718 Cayman GT4 |image=CaymanGT4_Front.jpg |make=Pohrse |type=Coupe |price=$104,690 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2021 Pohrse 718 Cayman GT4 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $104,690. ==Stats== The Cayman GT4 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=414|tqval=309|whval=3208|spdval=186|drv=RWD}} {{Maxstats|hpval=1105|tqval=912|whval=2697|spdval=240}} ==Gallery== <gallery> File:CaymanGT4_Rear.jpg|Rear view of the 2021 Pohrse 718 Cayman GT4. </gallery> 4e31e422fce7996f0a8c7192792a900cbd15231f 1349 1348 2022-08-28T22:56:19Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Pohrse 718 Cayman GT4 |image=CaymanGT4_Front.jpg |make=Pohrse |type=Coupe |price=$104,690 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982 |rlname=Porsche 718 Cayman (982) |limited=0 |electric=0 }} The 2021 Pohrse 718 Cayman GT4 is a two door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $104,690. ==Stats== The Cayman GT4 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=414|tqval=309|whval=3208|spdval=186|drv=RWD}} {{Maxstats|hpval=1105|tqval=912|whval=2697|spdval=240}} ==Gallery== <gallery> File:CaymanGT4_Rear.jpg|Rear view of the 2021 Pohrse 718 Cayman GT4. </gallery> c49b99c8ea4d78398358f75910a53df13105881d Category:Pohrse 14 1018 1350 2022-08-28T22:56:58Z S30Z 2 Created page with "All Pohrse vehicles in Southwest Florida." wikitext text/x-wiki All Pohrse vehicles in Southwest Florida. 4bea89809fe17c61253d7921555c7e7c2754b361 2014 Toyoto FJ Cruiser 0 1021 1353 2022-08-29T03:30:38Z HPtheamazing 9 Created page with "{{Carinfo|name=2014 Toyoto FJ Cruiser|image=FJ Cruiser Front.png|make=Toyoto|type=SUV|price=$37,999|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser|rlname=Toyota FJ Cruiser|limited=0|electric=0}} The 2014 Toyoto FJ Cruiser is a 2-door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $37,999. == Stats == The FJ Cruiser seats 5 people and has a maximum fuel capacity of 18.9 gallons {{Stockstats|hpval=..." wikitext text/x-wiki {{Carinfo|name=2014 Toyoto FJ Cruiser|image=FJ Cruiser Front.png|make=Toyoto|type=SUV|price=$37,999|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser|rlname=Toyota FJ Cruiser|limited=0|electric=0}} The 2014 Toyoto FJ Cruiser is a 2-door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $37,999. == Stats == The FJ Cruiser seats 5 people and has a maximum fuel capacity of 18.9 gallons {{Stockstats|hpval=259|tqval=278|whval=4,343|spdval=105|drv=AWD}}{{Maxstats|hpval=906|tqval=887|whval=3,843|spdval=179}} == Gallery == [[File:FJ Cruiser Rear.png|left|thumb|Rier view of the FJ Cruiser]] 9b360974fca74bee6963d456c00bc5f04ddce2bd 1354 1353 2022-08-29T03:35:31Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2014 Toyoto FJ Cruiser|image=FJ Cruiser Front.png|make=Toyoto|type=SUV|price=$37,999|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser|rlname=Toyota FJ Cruiser|limited=0|electric=0}} The 2014 Toyoto FJ Cruiser is a 5-door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $37,999. == Stats == The FJ Cruiser seats 5 people and has a maximum fuel capacity of 18.9 gallons {{Stockstats|hpval=259|tqval=278|whval=4,343|spdval=105|drv=AWD}}{{Maxstats|hpval=906|tqval=887|whval=3,843|spdval=179}} == Gallery == [[File:FJ Cruiser Rear.png|left|thumb|Rier view of the FJ Cruiser]] 0a3b0bdc8e541edde0fbb54ea397c3f552653c79 Category:CTM 14 1022 1355 2022-08-29T05:17:14Z S30Z 2 Created page with "All CTM vehicles in Southwest Florida." wikitext text/x-wiki All CTM vehicles in Southwest Florida. 3539729612850eb6b4131f9736344cde70932926 Category:Conquest 14 1023 1356 2022-08-29T05:17:23Z S30Z 2 Created page with "All Conquest vehicles in Southwest Florida." wikitext text/x-wiki All Conquest vehicles in Southwest Florida. e4e91f8507affaa296604b9e940c0f2ac94d3891 Category:Dacati 14 1024 1357 2022-08-29T05:17:34Z S30Z 2 Created page with "All Dacati vehicles in Southwest Florida." wikitext text/x-wiki All Dacati vehicles in Southwest Florida. 4277d4831ffd5287135d01eaed6f1cb69605bbb8 Category:Hardley-Movinson 14 1025 1358 2022-08-29T05:17:53Z S30Z 2 Created page with "All Hardley-Movinson vehicles in Southwest Florida." wikitext text/x-wiki All Hardley-Movinson vehicles in Southwest Florida. ba862fe43d2aa4a67ffe8fa46b33d1c764afbad2 Category:Hoosqvarna 14 1026 1359 2022-08-29T05:18:24Z S30Z 2 Created page with "All Hoosqvarna vehicles in Southwest Florida." wikitext text/x-wiki All Hoosqvarna vehicles in Southwest Florida. 71d3f88772015faf3ed7bce55c527595b2f9e101 Category:Kawisake 14 1027 1360 2022-08-29T05:18:41Z S30Z 2 Created page with "All Kawisake vehicles in Southwest Florida." wikitext text/x-wiki All Kawisake vehicles in Southwest Florida. 3e47e36ec91306b6e2509c91862e34231360ca99 Category:Sozooki 14 1028 1361 2022-08-29T05:18:59Z S30Z 2 Created page with "All Sozooki vehicles in Southwest Florida." wikitext text/x-wiki All Sozooki vehicles in Southwest Florida. b7966c136d19d3db1d3ff084ca110fcf4df7b924 Aristo 0 1029 1362 2022-08-29T05:22:04Z S30Z 2 Created page with "{{Makeinfo|makename=Aristo|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Noble_Automotive|rlname=Noble Automotive}} Aristo is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Noble_Automotive Noble Automotive]. == Vehicles by Aristo == You can find all vehicles by Aristo [[:Category:Aristo|here]]." wikitext text/x-wiki {{Makeinfo|makename=Aristo|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Noble_Automotive|rlname=Noble Automotive}} Aristo is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Noble_Automotive Noble Automotive]. == Vehicles by Aristo == You can find all vehicles by Aristo [[:Category:Aristo|here]]. 059967690b8f884bb4dedcf6b2b64f1da99d6d65 BMC 0 1030 1363 2022-08-29T05:23:37Z S30Z 2 Created page with "{{Makeinfo|makename=BMC|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Briggs_Automotive_Company|rlname=Briggs Automotive Company (BAC)}} BMC is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Briggs_Automotive_Company Briggs Automotive Company (BAC)]. == Vehicles by BMC == You can find all vehicles by BMC [[:Category:BMC|here]]." wikitext text/x-wiki {{Makeinfo|makename=BMC|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Briggs_Automotive_Company|rlname=Briggs Automotive Company (BAC)}} BMC is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Briggs_Automotive_Company Briggs Automotive Company (BAC)]. == Vehicles by BMC == You can find all vehicles by BMC [[:Category:BMC|here]]. 8db15f28c81dd5d4dd616ce0297d5f52979d9cc5 Category:BMC 14 1031 1364 2022-08-29T05:23:49Z S30Z 2 Created page with "All BMC vehicles in Southwest Florida." wikitext text/x-wiki All BMC vehicles in Southwest Florida. fd17dd7dda70d4a7764471fc3a4937b81dcbbd37 Esperanza GTA 0 1032 1365 2022-08-29T05:25:50Z S30Z 2 Created page with "{{Makeinfo|makename=Esperanza GTA|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Spania_GTA|rlname=Spania GTA}} Esperanza GTA is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Spania_GTA Spania GTA]. == Vehicles by Esperanza GTA == You can find all vehicles by Esperanza GTA [[:Category:Esperanza GTA|here]]." wikitext text/x-wiki {{Makeinfo|makename=Esperanza GTA|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Spania_GTA|rlname=Spania GTA}} Esperanza GTA is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Spania_GTA Spania GTA]. == Vehicles by Esperanza GTA == You can find all vehicles by Esperanza GTA [[:Category:Esperanza GTA|here]]. 9610985badbe0fa71d33ba0cdb3964c247cf3876 1367 1365 2022-08-29T05:27:28Z S30Z 2 S30Z moved page [[Esperanza]] to [[Esperanza GTA]] wikitext text/x-wiki {{Makeinfo|makename=Esperanza GTA|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Spania_GTA|rlname=Spania GTA}} Esperanza GTA is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Spania_GTA Spania GTA]. == Vehicles by Esperanza GTA == You can find all vehicles by Esperanza GTA [[:Category:Esperanza GTA|here]]. 9610985badbe0fa71d33ba0cdb3964c247cf3876 2013 Esperanza GTA Spano 0 919 1366 1241 2022-08-29T05:26:28Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2013 Esperanza GTA Spano |image=Spano_Front.jpg |make=Esperanza GTA |type=Super |price=$1,592,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Spania_GTA_Spano |rlname=Spania GTA Spano |limited=0 |electric=0 }} The 2013 Esperanza GTA Spano is a supercar produced by [[Esperanza GTA]]. It can be purchased from the dealership for $1,592,400. ==Stats== The GTA Spano has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=821|tqval=708|whval=2976|spdval=198|drv=RWD}} {{Maxstats|hpval=1593|tqval=1417|whval=2476|spdval=241}} ==Gallery== <gallery> File:Spano_Rear.jpg|Rear view of the 2013 Esperanza GTA Spano. File:Spano_Engine.jpg|Engine shot of the 2013 Esperanza GTA Spano. </gallery> 11ff5c69869e900b6936ed8d5e5f5e233412c61e Esperanza 0 1033 1368 2022-08-29T05:27:28Z S30Z 2 S30Z moved page [[Esperanza]] to [[Esperanza GTA]] wikitext text/x-wiki #REDIRECT [[Esperanza GTA]] 3c39b06a44edd18ceca6cf0edf5ddcc428eee1bd Category:Esperanza GTA 14 1034 1369 2022-08-29T05:27:49Z S30Z 2 Created page with "All Esperanza GTA vehicles in Southwest Florida." wikitext text/x-wiki All Esperanza GTA vehicles in Southwest Florida. c580343c49a3ce05ab710bfc299b4526061c7446 Category:Keya 14 1035 1370 2022-08-29T05:29:58Z S30Z 2 Created page with "All Keya vehicles in Southwest Florida." wikitext text/x-wiki All Keya vehicles in Southwest Florida. 033d7d7804dfc3974a534dbb3399328a180b329f Keya 0 1036 1371 2022-08-29T05:30:01Z S30Z 2 Created page with "{{Makeinfo|makename=Keya|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Kia|rlname=Kia}} Keya is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Kia Kia]. == Vehicles by Keya == You can find all vehicles by Keya [[:Category:Keya|here]]." wikitext text/x-wiki {{Makeinfo|makename=Keya|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Kia|rlname=Kia}} Keya is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Kia Kia]. == Vehicles by Keya == You can find all vehicles by Keya [[:Category:Keya|here]]. d8d2f15efec46e5e4a84ddc58e9877578369993b Category:LUF 14 1037 1372 2022-08-29T05:31:41Z S30Z 2 Created page with "All LUF vehicles in Southwest Florida." wikitext text/x-wiki All LUF vehicles in Southwest Florida. fd24dc8b1745e7a24b75ffeed1e4bb738c3d9286 LUF 0 1038 1373 2022-08-29T05:31:45Z S30Z 2 Created page with "{{Makeinfo|makename=LUF|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ruf_Automobile|rlname=Ruf}} LUF is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ruf_Automobile Ruf]. == Vehicles by LUF == You can find all vehicles by LUF [[:Category:LUF|here]]." wikitext text/x-wiki {{Makeinfo|makename=LUF|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ruf_Automobile|rlname=Ruf}} LUF is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ruf_Automobile Ruf]. == Vehicles by LUF == You can find all vehicles by LUF [[:Category:LUF|here]]. a7c32e4ef6ffd1fb2d8ac79712f11abb412c9c43 Lateraam 0 1039 1374 2022-08-29T05:32:41Z S30Z 2 Created page with "{{Makeinfo|makename=Lateraam|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Caterham_Cars|rlname=Caterham}} Keya is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Caterham_Cars Caterham]. == Vehicles by Lateraam == You can find all vehicles by Lateraam [[:Category:Lateraam|here]]." wikitext text/x-wiki {{Makeinfo|makename=Lateraam|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Caterham_Cars|rlname=Caterham}} Keya is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Caterham_Cars Caterham]. == Vehicles by Lateraam == You can find all vehicles by Lateraam [[:Category:Lateraam|here]]. 9ce8a210cca766c95d481a06f0a63e559375e088 1375 1374 2022-08-29T05:32:50Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Lateraam|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Caterham_Cars|rlname=Caterham}} Lateraam is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Caterham_Cars Caterham]. == Vehicles by Lateraam == You can find all vehicles by Lateraam [[:Category:Lateraam|here]]. 0c506cde9b71aface13a4ad385ac97a2878b8e61 Category:Lateraam 14 1040 1376 2022-08-29T05:33:09Z S30Z 2 Created page with "All Lateraam vehicles in Southwest Florida." wikitext text/x-wiki All Lateraam vehicles in Southwest Florida. d03ee7c3178fd757ffb9eb406d0f2e6ff3fdc78e Salane 0 1041 1377 2022-08-29T05:37:04Z S30Z 2 Created page with "{{Makeinfo|makename=Salane|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Saleen|rlname=Saleen}} Salane is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Saleen Saleen]. == Vehicles by Salane == You can find all vehicles by Salane [[:Category:Salane|here]]." wikitext text/x-wiki {{Makeinfo|makename=Salane|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Saleen|rlname=Saleen}} Salane is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Saleen Saleen]. == Vehicles by Salane == You can find all vehicles by Salane [[:Category:Salane|here]]. c29bdd052ad0d8e9c609e82e6c6ff68fb39c761e Category:Salane 14 1042 1378 2022-08-29T05:37:33Z S30Z 2 Created page with "All Salane vehicles in Southwest Florida." wikitext text/x-wiki All Salane vehicles in Southwest Florida. 545605475c06783d98042c8736aa89543e7ac129 Pohrse 0 1043 1379 2022-08-29T05:41:47Z S30Z 2 Created page with "{{Makeinfo|makename=Pohrse|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Porsche|rlname=Porsche}} Salane is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Porsche Porsche]. == Vehicles by Pohrse == You can find all vehicles by Pohrse [[:Category:Pohrse|here]]." wikitext text/x-wiki {{Makeinfo|makename=Pohrse|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Porsche|rlname=Porsche}} Salane is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Porsche Porsche]. == Vehicles by Pohrse == You can find all vehicles by Pohrse [[:Category:Pohrse|here]]. b32e7f4887ab69951b321ff8738f3e4c07d2c212 Category:Aristo 14 1044 1380 2022-08-29T05:56:29Z S30Z 2 Created page with "All Aristo vehicles in Southwest Florida." wikitext text/x-wiki All Aristo vehicles in Southwest Florida. 91088f227070353d86fe7867b31c69c6066ec63d Alfa-Romeo 0 1045 1381 2022-08-29T06:03:58Z S30Z 2 Redirected page to [[Alpha]] wikitext text/x-wiki #REDIRECT [[Alpha]] 13513350c99dc62359be8c4c8eb9b90faefe5239 Alfa Romeo 0 1046 1382 2022-08-29T06:04:01Z S30Z 2 Redirected page to [[Alpha]] wikitext text/x-wiki #REDIRECT [[Alpha]] 13513350c99dc62359be8c4c8eb9b90faefe5239 Noble 0 1047 1383 2022-08-29T06:04:57Z S30Z 2 Redirected page to [[Aristo]] wikitext text/x-wiki #REDIRECT [[Aristo]] 7f5c090ac847c0ffa7a92303fa720a818e3bdb65 Aston martin 0 1048 1384 2022-08-29T06:05:22Z S30Z 2 Redirected page to [[Atone-Mira]] wikitext text/x-wiki #REDIRECT [[Atone-Mira]] a6ba8540e2b85f1c22587194e24c2c64043b2330 Acura 0 1049 1385 2022-08-29T06:06:14Z S30Z 2 Redirected page to [[Axura]] wikitext text/x-wiki #REDIRECT [[Axura]] ac0792e53cc450ba649b2afabf1d96e1d6054d78 Bentley 0 1050 1386 2022-08-29T06:06:55Z S30Z 2 Redirected page to [[Banthey]] wikitext text/x-wiki #REDIRECT [[Banthey]] 9069f34df5e509837ff25fb9c2084c7e0f6f8417 Bac 0 1051 1387 2022-08-29T06:09:16Z S30Z 2 Redirected page to [[BMC]] wikitext text/x-wiki #REDIRECT [[BMC]] d8cfbe450cb8e70b674199c7b70762cea589ba8a Bmw 0 1052 1388 2022-08-29T06:10:50Z S30Z 2 Redirected page to [[BNW]] wikitext text/x-wiki #REDIRECT [[BNW]] 249dc60d225118c524b5c0828747ceacf575aced Buick 0 1053 1389 2022-08-29T06:11:18Z S30Z 2 Redirected page to [[Brick]] wikitext text/x-wiki #REDIRECT [[Brick]] 9e95272c7512b541d5089e94c6ef1eb3c7dcd708 Bugatti 0 1054 1390 2022-08-29T06:11:42Z S30Z 2 Redirected page to [[Bulatti]] wikitext text/x-wiki #REDIRECT [[Bulatti]] 544a9ee10dda67e92eee7a61e49f4e95f994b6fd Cadillac 0 1055 1391 2022-08-29T06:12:11Z S30Z 2 Redirected page to [[Cadillic]] wikitext text/x-wiki #REDIRECT [[Cadillic]] 1f4d2fb6acd7422b1edf7336f3daa3543d063dd9 Chevy 0 1056 1392 2022-08-29T06:12:49Z S30Z 2 Redirected page to [[Chavy]] wikitext text/x-wiki #REDIRECT [[Chavy]] b15559c491cccd3ec3430b98e54b110a0b2d4f77 Chevrolet 0 1057 1393 2022-08-29T06:13:30Z S30Z 2 Redirected page to [[Chavy]] wikitext text/x-wiki #REDIRECT [[Chavy]] b15559c491cccd3ec3430b98e54b110a0b2d4f77 Chrysler 0 1058 1394 2022-08-29T06:14:36Z S30Z 2 Redirected page to [[Chrystal]] wikitext text/x-wiki #REDIRECT [[Chrystal]] 9c157f77d50f88cc7a03a7279a151cfd4d8356be Triumph 0 1059 1395 2022-08-29T06:15:15Z S30Z 2 Redirected page to [[Conquest]] wikitext text/x-wiki #REDIRECT [[Conquest]] ed4a35133e17f1bee5e4c736cdcb7116499e2bb2 Ssc 0 1060 1396 2022-08-29T06:15:34Z S30Z 2 Redirected page to [[CSS]] wikitext text/x-wiki #REDIRECT [[CSS]] abbfe9cbc7c7702dd92ad6f5a53fe1b2bc4a87bb Ktm 0 1061 1397 2022-08-29T06:16:00Z S30Z 2 Redirected page to [[CTM]] wikitext text/x-wiki #REDIRECT [[CTM]] 07d7b7fb095b4fe880e215c0dcc1454179a4e613 Ducati 0 1062 1398 2022-08-29T06:17:02Z S30Z 2 Redirected page to [[Dacati]] wikitext text/x-wiki #REDIRECT [[Dacati]] 292e5fb41df186f889ef2b31d532c51042e468fd Detomaso 0 1063 1399 2022-08-29T06:17:46Z S30Z 2 Redirected page to [[DeTomato]] wikitext text/x-wiki #REDIRECT [[DeTomato]] 7bf6d522593f73045bf5ecbf3a3722d26e0f2e69 Dodge 0 1064 1400 2022-08-29T06:18:54Z S30Z 2 Redirected page to [[Dodje]] wikitext text/x-wiki #REDIRECT [[Dodje]] 5091f44e1332880586e48d9e7e2a2799cbc5e7ca Tesla 0 1065 1401 2022-08-29T06:19:29Z S30Z 2 Redirected page to [[Edison]] wikitext text/x-wiki #REDIRECT [[Edison]] 501fdd44fe7f728b287164a5a9a10ae0a59bcafe Spania gta 0 1066 1402 2022-08-29T06:22:24Z S30Z 2 Redirected page to [[Esperanza GTA]] wikitext text/x-wiki #REDIRECT [[Esperanza GTA]] 3c39b06a44edd18ceca6cf0edf5ddcc428eee1bd Spania 0 1067 1403 2022-08-29T06:23:01Z S30Z 2 Redirected page to [[Esperanza GTA]] wikitext text/x-wiki #REDIRECT [[Esperanza GTA]] 3c39b06a44edd18ceca6cf0edf5ddcc428eee1bd Hennessey 0 1068 1404 2022-08-29T06:23:50Z S30Z 2 Redirected page to [[Ethanol]] wikitext text/x-wiki #REDIRECT [[Ethanol]] 4ddc5766ce40f1f3d2f2b0f6ef76f16299e02f5a Ford 0 1069 1405 2022-08-29T06:26:26Z S30Z 2 Redirected page to [[Fard]] wikitext text/x-wiki #REDIRECT [[Fard]] afcc591a446fc93c33bb643b27aa87b1f30a38c2 Ferrari 0 1070 1406 2022-08-29T06:35:14Z S30Z 2 Redirected page to [[Furai]] wikitext text/x-wiki #REDIRECT [[Furai]] 122371bb1dc9ebdde2c290579be5121dd1f9351b Gmc 0 1071 1407 2022-08-29T06:35:31Z S30Z 2 Redirected page to [[GEC]] wikitext text/x-wiki #REDIRECT [[GEC]] fe783dd01a5f824682dc8b4d741d8667ad7e81c4 Genesis 0 1072 1408 2022-08-29T06:35:55Z S30Z 2 Redirected page to [[Genesys]] wikitext text/x-wiki #REDIRECT [[Genesys]] 5e45f3a761445089876fd828cf0e32ee9074c310 Hummer 0 1073 1409 2022-08-29T06:36:47Z S30Z 2 Redirected page to [[Hammer]] wikitext text/x-wiki #REDIRECT [[Hammer]] 144bbdade53f8ee76567037722edd3ef4f1fac80 Honda 0 1074 1410 2022-08-29T06:37:41Z S30Z 2 Redirected page to [[Handa]] wikitext text/x-wiki #REDIRECT [[Handa]] efbc195e18e464fdd1d42a1af770132871638f1a Harley-davidson 0 1075 1411 2022-08-29T06:38:23Z S30Z 2 Redirected page to [[Hardley-Movinson]] wikitext text/x-wiki #REDIRECT [[Hardley-Movinson]] ac60d74180936a1f914fa9f04a6d1c34e63ae134 Harley davidson 0 1076 1412 2022-08-29T06:38:40Z S30Z 2 Redirected page to [[Hardley-Movinson]] wikitext text/x-wiki #REDIRECT [[Hardley-Movinson]] ac60d74180936a1f914fa9f04a6d1c34e63ae134 Hyundai 0 1077 1413 2022-08-29T06:39:28Z S30Z 2 Redirected page to [[Hayunai]] wikitext text/x-wiki #REDIRECT [[Hayunai]] d0128fefa1f1264426f5da050ddf5ea58ba5c146 Lotus 0 1078 1414 2022-08-29T06:39:56Z S30Z 2 Redirected page to [[Hibiscus]] wikitext text/x-wiki #REDIRECT [[Hibiscus]] 0aa1b6bab4aeef7594ac643f2641565c10a3a441 Husqvarna 0 1079 1415 2022-08-29T06:40:40Z S30Z 2 Redirected page to [[Hoosqvarna]] wikitext text/x-wiki #REDIRECT [[Hoosqvarna]] 8fd69a0439c40677de3be4ac48b0b2c2d16b7ae6 International 0 1080 1416 2022-08-29T06:41:21Z S30Z 2 Redirected page to [[Intercontinental]] wikitext text/x-wiki #REDIRECT [[Intercontinental]] 85689ee2aabd36d3e043a0a46cfe4bdc17b5ee59 Jeep 0 1081 1417 2022-08-29T06:42:00Z S30Z 2 Redirected page to [[Jeff]] wikitext text/x-wiki #REDIRECT [[Jeff]] 8150070ebfcffa031af472da6cc61819f5f5ca18 Kawasaki 0 1082 1418 2022-08-29T06:42:29Z S30Z 2 Redirected page to [[Kawisake]] wikitext text/x-wiki #REDIRECT [[Kawisake]] 3a74ada481ce4aa9d39a6fcd882bbd23ba4f3326 Kia 0 1083 1419 2022-08-29T06:42:53Z S30Z 2 Redirected page to [[Keya]] wikitext text/x-wiki #REDIRECT [[Keya]] c31ea6cc9e0b769992431379369afdcd83c90acf Koenigsegg 0 1084 1420 2022-08-29T06:43:22Z S30Z 2 Redirected page to [[Koneggsaga]] wikitext text/x-wiki #REDIRECT [[Koneggsaga]] 47e55a53a7aaca4916a4b47b18fda13faea3d3b8 Lamborghini 0 1085 1421 2022-08-29T06:43:54Z S30Z 2 Redirected page to [[Lamburghina]] wikitext text/x-wiki #REDIRECT [[Lamburghina]] 2926b6d6cd42176e97fd5d8a0691cc3ee38db60c Lancia 0 1086 1422 2022-08-29T06:44:40Z S30Z 2 Redirected page to [[Lancer]] wikitext text/x-wiki #REDIRECT [[Lancer]] a956b8550ad914863bf53db6d5f84d379116b357 Caterham 0 1087 1423 2022-08-29T06:45:51Z S30Z 2 Redirected page to [[Lateraam]] wikitext text/x-wiki #REDIRECT [[Lateraam]] a04c8b137a1038ffa757637df25f927ece7cfe42 Ruf 0 1088 1424 2022-08-29T06:46:11Z S30Z 2 Redirected page to [[LUF]] wikitext text/x-wiki #REDIRECT [[LUF]] 49d9d51269407b2174041ce3711fa2ac21802a1a Lexus 0 1089 1425 2022-08-29T06:46:49Z S30Z 2 Redirected page to [[Luxuss]] wikitext text/x-wiki #REDIRECT [[Luxuss]] 733ce7a2b865b224c70622541c579173b9f23a11 Maserati 0 1090 1426 2022-08-29T06:51:53Z S30Z 2 Redirected page to [[Mazeri]] wikitext text/x-wiki #REDIRECT [[Mazeri]] bea4950e53e06da9ff53382f59aad118eb5a0bd9 Mclaren 0 1091 1427 2022-08-29T06:52:41Z S30Z 2 Redirected page to [[McFaren]] wikitext text/x-wiki #REDIRECT [[McFaren]] 25f92fa2af9aef73234299f8ce245aeb56ceea78 Mitsubishi 0 1092 1428 2022-08-29T06:53:18Z S30Z 2 Redirected page to [[Mitsabisha]] wikitext text/x-wiki #REDIRECT [[Mitsabisha]] e37d744df776481cccd6f2b446455fe8fa8bf7c3 Mercedes 0 1093 1429 2022-08-29T06:53:41Z S30Z 2 Redirected page to [[Muaraci-Bens]] wikitext text/x-wiki #REDIRECT [[Muaraci-Bens]] f08ecce5ded6dacf50637f1daf62e9014a934591 Mercedes benz 0 1095 1431 2022-08-29T06:54:22Z S30Z 2 Redirected page to [[Muaraci-Bens]] wikitext text/x-wiki #REDIRECT [[Muaraci-Bens]] f08ecce5ded6dacf50637f1daf62e9014a934591 Mercedes-benz 0 1096 1432 2022-08-29T06:54:34Z S30Z 2 Redirected page to [[Muaraci-Bens]] wikitext text/x-wiki #REDIRECT [[Muaraci-Bens]] f08ecce5ded6dacf50637f1daf62e9014a934591 Nissan 0 1097 1433 2022-08-29T06:54:52Z S30Z 2 Redirected page to [[Naan]] wikitext text/x-wiki #REDIRECT [[Naan]] a65d6670fc70dc6f0b503928615013ba34285d51 Audi 0 1098 1434 2022-08-29T06:55:07Z S30Z 2 Redirected page to [[Owdi]] wikitext text/x-wiki #REDIRECT [[Owdi]] 7d528ddf8ec059b8dd0c35f0b07eaf8a3a79ca33 2015 Pohrse 918 Spyder Roadster 0 373 1435 551 2022-08-29T06:57:02Z S30Z 2 S30Z moved page [[2015 Porhse 918 Spyder Roadster]] to [[2015 Pohrse 918 Spyder Roadster]] wikitext text/x-wiki {{Carinfo |name=2015 Porhse 918 Spyder Roadster |image=918_Front.jpg |make=Porhse |type=Hyper |price=$1,344,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_918_Spyder |rlname=Porsche 918 Spyder |limited=0 |electric=0 }} The 2015 Porhse 918 Spyder Roadster is a hypercar produced by [[Porhse]]. It can be purchased from the dealership for $1,344,900. ==Stats== The LaFurai has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=873|tqval=931|whval=3691|spdval=230|drv=AWD}} {{Maxstats|hpval=1487|tqval=897|whval=3190|spdval=248}} ==Gallery== <gallery> File:918_Rear.jpg|Rear view of the 2015 Porhse 918 Spyder Roadster. </gallery> 271c9a2e7caa15b166f9487e4093b159dabad1e2 1437 1435 2022-08-29T06:57:40Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2015 Pohrse 918 Spyder Roadster |image=918_Front.jpg |make=Pohrse |type=Hyper |price=$1,344,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_918_Spyder |rlname=Porsche 918 Spyder |limited=0 |electric=0 }} The 2015 Pohrse 918 Spyder Roadster is a hypercar produced by [[Pohrse]]. It can be purchased from the dealership for $1,344,900. ==Stats== The 2015 Pohrse 918 Spyder Roadster has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=873|tqval=931|whval=3691|spdval=230|drv=AWD}} {{Maxstats|hpval=1487|tqval=897|whval=3190|spdval=248}} ==Gallery== <gallery> File:918_Rear.jpg|Rear view of the 2015 Pohrse 918 Spyder Roadster. </gallery> 990e04e89b7d34dd85c5207e209929661d1c6c69 2015 Porhse 918 Spyder Roadster 0 1099 1436 2022-08-29T06:57:02Z S30Z 2 S30Z moved page [[2015 Porhse 918 Spyder Roadster]] to [[2015 Pohrse 918 Spyder Roadster]] wikitext text/x-wiki #REDIRECT [[2015 Pohrse 918 Spyder Roadster]] 19dc93bc8f1eacc04a9399232eebd1e261e20d2d Pagani 0 1100 1438 2022-08-29T06:58:57Z S30Z 2 Redirected page to [[Paijani]] wikitext text/x-wiki #REDIRECT [[Paijani]] 1e20b5915da20e4753d8015ac4e0620d06a019f2 Plymouth 0 1101 1439 2022-08-29T06:59:19Z S30Z 2 Redirected page to [[Plywood]] wikitext text/x-wiki #REDIRECT [[Plywood]] f7c11f027992af37a809ebaec56978e9c2e54c79 Porsche 0 1102 1440 2022-08-29T06:59:40Z S30Z 2 Redirected page to [[Pohrse]] wikitext text/x-wiki #REDIRECT [[Pohrse]] 6cdc6f929bb14432bc370dab39576d6dfd8c67d5 Rolls royce 0 1103 1441 2022-08-29T07:00:50Z S30Z 2 Redirected page to [[Rolls Rayce]] wikitext text/x-wiki #REDIRECT [[Rolls Rayce]] 697445edab2bad064e9a288f5b53568a14a72b90 Rolls-royce 0 1104 1442 2022-08-29T07:01:00Z S30Z 2 Redirected page to [[Rolls Rayce]] wikitext text/x-wiki #REDIRECT [[Rolls Rayce]] 697445edab2bad064e9a288f5b53568a14a72b90 Subaru 0 1105 1443 2022-08-29T07:01:23Z S30Z 2 Redirected page to [[Saaburu]] wikitext text/x-wiki #REDIRECT [[Saaburu]] 471ff472e2875191d46e5688801874641eebae2d Saleen 0 1106 1444 2022-08-29T07:01:48Z S30Z 2 Redirected page to [[Salane]] wikitext text/x-wiki #REDIRECT [[Salane]] de77c50612e95a0bdd59604b46f6f5ea057cd5f2 Suzuki 0 1107 1445 2022-08-29T07:02:08Z S30Z 2 Redirected page to [[Sozooki]] wikitext text/x-wiki #REDIRECT [[Sozooki]] d6065ec94b46ec02c66948f985bdfc1de1e46248 Sutphen 0 1108 1446 2022-08-29T07:02:29Z S30Z 2 Redirected page to [[Stuphen]] wikitext text/x-wiki #REDIRECT [[Stuphen]] 4bb2fd47c17520f175831d36ea5024d5d8645f5f Volkswagen 0 1109 1447 2022-08-29T07:02:53Z S30Z 2 Redirected page to [[Volkinsen]] wikitext text/x-wiki #REDIRECT [[Volkinsen]] 397b4028aad4bfda7ad1bf310bfa82eb7b6f8520 Vw 0 1110 1448 2022-08-29T07:03:18Z S30Z 2 Redirected page to [[Volkinsen]] wikitext text/x-wiki #REDIRECT [[Volkinsen]] 397b4028aad4bfda7ad1bf310bfa82eb7b6f8520 Volvo 0 1111 1449 2022-08-29T07:03:36Z S30Z 2 Redirected page to [[Vovol]] wikitext text/x-wiki #REDIRECT [[Vovol]] 212d8989e931d326cdd55924bc9a96fafa0b3213 Zenvo 0 1112 1450 2022-08-29T07:03:56Z S30Z 2 Redirected page to [[Xynvo]] wikitext text/x-wiki #REDIRECT [[Xynvo]] 83135a2a36d803abd125460125dd6ca2560fe194 Yamaha 0 1113 1451 2022-08-29T07:04:18Z S30Z 2 Redirected page to [[Yamiiha]] wikitext text/x-wiki #REDIRECT [[Yamiiha]] f853454f9872b519217c1bc0139747ccd76a5ef2 File:Z35 Rear.jpg 6 1114 1452 2022-08-30T05:28:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z35 Front.jpg 6 1115 1453 2022-08-30T05:28:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Rear.jpg 6 1116 1454 2022-08-30T05:28:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Front.jpg 6 1117 1455 2022-08-30T05:28:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChallengerSWB Rear.jpg 6 1118 1456 2022-08-30T05:29:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChallengerSWB Front.jpg 6 1119 1457 2022-08-30T05:29:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChallengerB18 Rear.jpg 6 1120 1458 2022-08-30T05:29:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChallengerB18 Front.jpg 6 1121 1459 2022-08-30T05:29:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChallengerBRWB Rear.jpg 6 1122 1460 2022-08-30T05:29:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ChallengerBRWB Front.jpg 6 1123 1461 2022-08-30T05:30:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Nomad Rear.jpg 6 1124 1462 2022-08-30T05:30:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Nomad Front.jpg 6 1125 1463 2022-08-30T05:30:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:15Z28 Rear.jpg 6 1126 1464 2022-08-30T05:30:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:15Z28 Front.jpg 6 1127 1465 2022-08-30T05:30:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:12ZL1 Rear.jpg 6 1128 1466 2022-08-30T05:31:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:12ZL1 Front.jpg 6 1129 1467 2022-08-30T05:31:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C6ZR1 Rear.jpg 6 1130 1468 2022-08-30T05:31:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C6ZR1 Front.jpg 6 1131 1469 2022-08-30T05:31:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G37 Rear.jpg 6 1132 1470 2022-08-30T05:31:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G37 Front.jpg 6 1133 1471 2022-08-30T05:32:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:05Stang Rear.jpg 6 1134 1472 2022-08-30T05:32:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:05Stang Front.jpg 6 1135 1473 2022-08-30T05:32:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DC5 Rear.jpg 6 1136 1474 2022-08-30T05:32:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DC5 Front.jpg 6 1137 1475 2022-08-30T05:34:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:11Roadster Front.jpg 6 1138 1476 2022-08-30T05:34:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:11Roadster Rear.jpg 6 1139 1477 2022-08-30T05:34:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E92 Rear.jpg 6 1140 1478 2022-08-30T05:35:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E92 Front.jpg 6 1141 1479 2022-08-30T05:35:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CLK63 Rear.jpg 6 1142 1480 2022-08-30T05:37:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CLK63 Front.jpg 6 1143 1481 2022-08-30T05:37:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z4 Interior.jpg 6 1144 1482 2022-08-30T05:37:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z4 Rear.jpg 6 1145 1483 2022-08-30T05:37:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z4 Front.jpg 6 1146 1484 2022-08-30T05:37:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S Rear.jpg 6 1147 1485 2022-08-30T05:38:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S Front.jpg 6 1148 1486 2022-08-30T05:38:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Gencoupe Rear.jpg 6 1149 1487 2022-08-30T05:38:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Gencoupe Front.jpg 6 1150 1488 2022-08-30T05:38:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z32 Rear.jpg 6 1151 1489 2022-08-30T05:38:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z32 Front.jpg 6 1152 1490 2022-08-30T05:39:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 Rear.jpg 6 1153 1491 2022-08-30T05:39:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 Front.jpg 6 1154 1492 2022-08-30T05:39:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evora Front.jpg 6 1155 1493 2022-08-30T05:39:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evora Rear.jpg 6 1156 1494 2022-08-30T05:39:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2011 Hibiscus Evora S 0 1157 1495 2022-08-30T05:40:41Z S30Z 2 Created page with "{{Carinfo |name=2011 Hibiscus Evora S |image=Evora_Front.jpg |make=Hibiscus |type=Coupe |price=$55,495 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_Evora |rlname=Lotus Evora |limited=0 |electric=0 }} The 2011 Hibiscus Evora S is a two door coupe produced by [[Hibiscus]]. It can be purchased from the dealership for $55,495. ==Stats== The Evora S has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=345|tqval=295|whv..." wikitext text/x-wiki {{Carinfo |name=2011 Hibiscus Evora S |image=Evora_Front.jpg |make=Hibiscus |type=Coupe |price=$55,495 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_Evora |rlname=Lotus Evora |limited=0 |electric=0 }} The 2011 Hibiscus Evora S is a two door coupe produced by [[Hibiscus]]. It can be purchased from the dealership for $55,495. ==Stats== The Evora S has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=345|tqval=295|whval=3168|spdval=178|drv=RWD}} {{Maxstats|hpval=994|tqval=674|whval=2668|spdval=238}} ==Gallery== <gallery> File:Evora_Rear.jpg|Rear view of the 2011 Hibiscus Evora S. </gallery> bf9384a893d2854b9e2bd669d30255735c952b9d 2023 Naan Z Performance 0 1158 1496 2022-08-30T05:41:16Z S30Z 2 Created page with "{{Carinfo |name=2023 Naan Z Performance |image=Z35_Front.jpg |make=Naan |type=Coupe |price=$51,015 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Z_(RZ34) |rlname=Nissan Z (RZ34) |limited=0 |electric=0 }} The 2023 Naan Z Performance is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $51,015. ==Stats== The Z has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=400|tqval=350|whval=3..." wikitext text/x-wiki {{Carinfo |name=2023 Naan Z Performance |image=Z35_Front.jpg |make=Naan |type=Coupe |price=$51,015 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Z_(RZ34) |rlname=Nissan Z (RZ34) |limited=0 |electric=0 }} The 2023 Naan Z Performance is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $51,015. ==Stats== The Z has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=400|tqval=350|whval=3536|spdval=155|drv=RWD}} {{Maxstats|hpval=1254|tqval=1183|whval=3036|spdval=196}} ==Gallery== <gallery> File:Z35_Rear.jpg|Rear view of the 2023 Naan Z Performance. </gallery> ce8ff7aff6f2291c131f47478dfb47b152d51382 2000 Handa Civic Si 0 1159 1497 2022-08-30T05:41:37Z S30Z 2 Created page with "{{Carinfo |name=2000 Handa Civic Si |image=EM1_Front.jpg |make=Handa |type=Coupe |price=$3,750 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_(sixth_generation) |rlname=Honda Civic (6th gen.) |limited=0 |electric=0 }} The 2000 Handa Civic Si is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $3,750. ==Stats== The Civic Si has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=..." wikitext text/x-wiki {{Carinfo |name=2000 Handa Civic Si |image=EM1_Front.jpg |make=Handa |type=Coupe |price=$3,750 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_(sixth_generation) |rlname=Honda Civic (6th gen.) |limited=0 |electric=0 }} The 2000 Handa Civic Si is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $3,750. ==Stats== The Civic Si has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=160|tqval=111|whval=2615|spdval=142|drv=FWD}} {{Maxstats|hpval=955|tqval=847|whval=2112|spdval=148}} ==Gallery== <gallery> File:EM1_Rear.jpg|Rear view of the 2000 Handa Civic Si. </gallery> 1e3de9460973a29d7b61bcf7ee8da5fae8f35051 2022 Dodje Challenger Scatpack Widebody 0 1160 1498 2022-08-30T05:42:13Z S30Z 2 Created page with "{{Carinfo |name=2022 Dodje Challenger Scatpack Widebody |image=ChallengerSWB_Front.jpg |make=Dodje |type=Coupe |price=$52,140 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2022 Dodje Challenger Scatpack Widebody is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $52,140. ==Stats..." wikitext text/x-wiki {{Carinfo |name=2022 Dodje Challenger Scatpack Widebody |image=ChallengerSWB_Front.jpg |make=Dodje |type=Coupe |price=$52,140 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2022 Dodje Challenger Scatpack Widebody is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $52,140. ==Stats== The Challenger Scatpack Widebody has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=475|tqval=465|whval=4308|spdval=174|drv=RWD}} {{Maxstats|hpval=1463|tqval=1434|whval=3808|spdval=236}} ==Gallery== <gallery> File:ChallengerSWB_Rear.jpg|Rear view of the 2022 Dodje Challenger Scatpack Widebody. </gallery> f5541b6d5e8befbf9f66d01926efe5b8073b2de3 2018 Dodje Challenger Badcat 0 1161 1499 2022-08-30T05:42:48Z S30Z 2 Created page with "{{Carinfo |name=2018 Dodje Challenger Badcat |image=ChallengerB18_Front.jpg |make=Dodje |type=Coupe |price=$60,991 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2018 Dodje Challenger Badcat is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $60,991. ==Stats== The Challenger Ba..." wikitext text/x-wiki {{Carinfo |name=2018 Dodje Challenger Badcat |image=ChallengerB18_Front.jpg |make=Dodje |type=Coupe |price=$60,991 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2018 Dodje Challenger Badcat is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $60,991. ==Stats== The Challenger Badcat has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=707|tqval=650|whval=4455|spdval=198|drv=RWD}} {{Maxstats|hpval=1494|tqval=1419|whval=3955|spdval=227}} ==Gallery== <gallery> File:ChallengerB18_Rear.jpg|Rear view of the 2018 Dodje Challenger Badcat. </gallery> e0432984785787b0dedb6ced92c599b661f63480 2022 Dodje Challenger Badcat Redeye Widebody 0 1162 1500 2022-08-30T05:43:15Z S30Z 2 Created page with "{{Carinfo |name=2022 Dodje Challenger Badcat Redeye Widebody |image=ChallengerBRWB_Front.jpg |make=Dodje |type=Coupe |price=$83,920 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2022 Dodje Challenger Badcat Redeye Widebody is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $83,920..." wikitext text/x-wiki {{Carinfo |name=2022 Dodje Challenger Badcat Redeye Widebody |image=ChallengerBRWB_Front.jpg |make=Dodje |type=Coupe |price=$83,920 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2022 Dodje Challenger Badcat Redeye Widebody is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $83,920. ==Stats== The Challenger Badcat Redeye Widebody has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=797|tqval=707|whval=4493|spdval=202|drv=RWD}} {{Maxstats|hpval=1604|tqval=1476|whval=3993|spdval=225}} ==Gallery== <gallery> File:ChallengerBRWB_Rear.jpg|Rear view of the 2022 Dodje Challenger Badcat Redeye Widebody. </gallery> dd68f7a41fbb7d1e028cfe0ecc451f5167c77bdf 2017 Aero Nomad Tactical 0 1163 1501 2022-08-30T05:43:35Z S30Z 2 Created page with "{{Carinfo |name=2017 Aero Nomad Tactical |image=Nomad_Front.jpg |make=Aero |type=Coupe |price=$81,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ariel_Motor_Company#Nomad |rlname=Ariel Nomad |limited=0 |electric=0 }} The 2017 Aero Nomad Tactical is a buggy produced by [[Aero]]. It can be purchased from the dealership for $81,250. ==Stats== The Nomad has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=238|tqval=200|wh..." wikitext text/x-wiki {{Carinfo |name=2017 Aero Nomad Tactical |image=Nomad_Front.jpg |make=Aero |type=Coupe |price=$81,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ariel_Motor_Company#Nomad |rlname=Ariel Nomad |limited=0 |electric=0 }} The 2017 Aero Nomad Tactical is a buggy produced by [[Aero]]. It can be purchased from the dealership for $81,250. ==Stats== The Nomad has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=238|tqval=200|whval=1750|spdval=124|drv=RWD}} {{Maxstats|hpval=876|tqval=1104|whval=1250|spdval=129}} ==Gallery== <gallery> File:Nomad_Rear.jpg|Rear view of the 2017 Aero Nomad Tactical. </gallery> e08b65127afd197a37cb3aecc32185e4d872f399 2015 Chavy Camaro Z/28 0 1164 1502 2022-08-30T05:43:57Z S30Z 2 Created page with "{{Carinfo |name=2015 Chavy Camaro Z/28 |image=15Z28_Front.jpg |make=Chavy |type=Coupe |price=$52,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation)#Camaro_Z/28 |rlname=Chevrolet Camaro Z/28 (5th gen.) |limited=0 |electric=0 }} The 2015 Chavy Camaro Z/28 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $52,995. ==Stats== The 2015 Chavy Camaro Z/28 has 4 seats and..." wikitext text/x-wiki {{Carinfo |name=2015 Chavy Camaro Z/28 |image=15Z28_Front.jpg |make=Chavy |type=Coupe |price=$52,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation)#Camaro_Z/28 |rlname=Chevrolet Camaro Z/28 (5th gen.) |limited=0 |electric=0 }} The 2015 Chavy Camaro Z/28 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $52,995. ==Stats== The 2015 Chavy Camaro Z/28 has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=505|tqval=481|whval=3818|spdval=188|drv=RWD}} {{Maxstats|hpval=1201|tqval=1051|whval=3318|spdval=205}} ==Gallery== <gallery> File:15Z28_Rear.jpg|Rear view of the 2015 Chavy Camaro Z/28. </gallery> c1eeeb623c2e2f0a8ebd46bffb13a7e2ade31060 2012 Chavy Camaro ZL1 0 1165 1503 2022-08-30T05:44:15Z S30Z 2 Created page with "{{Carinfo |name=2012 Chavy Camaro ZL1 |image=12ZL1_Front.jpg |make=Chavy |type=Coupe |price=$41,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation)#ZL1_(2012%E2%80%932015) |rlname=Chevrolet Camaro ZL1 (5th gen.) |limited=0 |electric=0 }} The 2012 Chavy Camaro ZL1 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $41,990. ==Stats== The 2012 Chavy Camaro ZL1 has 4 se..." wikitext text/x-wiki {{Carinfo |name=2012 Chavy Camaro ZL1 |image=12ZL1_Front.jpg |make=Chavy |type=Coupe |price=$41,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Camaro_(fifth_generation)#ZL1_(2012%E2%80%932015) |rlname=Chevrolet Camaro ZL1 (5th gen.) |limited=0 |electric=0 }} The 2012 Chavy Camaro ZL1 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $41,990. ==Stats== The 2012 Chavy Camaro ZL1 has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=580|tqval=556|whval=4120|spdval=164|drv=RWD}} {{Maxstats|hpval=1172|tqval=995|whval=3620|spdval=214}} ==Gallery== <gallery> File:12ZL1_Rear.jpg|Rear view of the 2012 Chavy Camaro ZL1. </gallery> 117c9882db14bca904b1f098965952fe4677c14d 2013 Chavy Corvette ZR1 0 1166 1504 2022-08-30T05:44:36Z S30Z 2 Created page with "{{Carinfo |name=2013 Chavy Corvette ZR1 |image=C6ZR1_Front.jpg |make=Chavy |type=Coupe |price=$82,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C6)#ZR1= |rlname=Chevrolet Corvette ZR1 (C6) |limited=0 |electric=0 }} The 2013 Chavy Corvette ZR1 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $82,000. ==Stats== The 2013 Chavy Corvette ZR1 has 2 seats and a fuel capacity of 1..." wikitext text/x-wiki {{Carinfo |name=2013 Chavy Corvette ZR1 |image=C6ZR1_Front.jpg |make=Chavy |type=Coupe |price=$82,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C6)#ZR1= |rlname=Chevrolet Corvette ZR1 (C6) |limited=0 |electric=0 }} The 2013 Chavy Corvette ZR1 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $82,000. ==Stats== The 2013 Chavy Corvette ZR1 has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=638|tqval=604|whval=3353|spdval=204|drv=RWD}} {{Maxstats|hpval=1181|tqval=789|whval=2853|spdval=221}} ==Gallery== <gallery> File:C6ZR1_Rear.jpg|Rear view of the 2013 Chavy Corvette ZR1. </gallery> dac324a44fde0aec717f60788bc2f104ee900ba0 2011 Endless G37 EPL 0 1167 1505 2022-08-30T05:45:10Z S30Z 2 Created page with "{{Carinfo |name=2011 Endless G37 EPL |image=G37_Front.jpg |make=Endless |type=Coupe |price=$29,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Infiniti_G-series_(Q40/Q60)#Fourth_generation_%28V36%3B_2007%29= |rlname=Infiniti G37 IPL |limited=0 |electric=0 }} The 2011 Endless G37 EPL is a two door coupe produced by [[Endless]]. It can be purchased from the dealership for $29,998. ==Stats== The 2011 Endless G37 EPL has 2 seats and a f..." wikitext text/x-wiki {{Carinfo |name=2011 Endless G37 EPL |image=G37_Front.jpg |make=Endless |type=Coupe |price=$29,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Infiniti_G-series_(Q40/Q60)#Fourth_generation_%28V36%3B_2007%29= |rlname=Infiniti G37 IPL |limited=0 |electric=0 }} The 2011 Endless G37 EPL is a two door coupe produced by [[Endless]]. It can be purchased from the dealership for $29,998. ==Stats== The 2011 Endless G37 EPL has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=348|tqval=276|whval=3728|spdval=155|drv=RWD}} {{Maxstats|hpval=1285|tqval=1094|whval=3228|spdval=204}} ==Gallery== <gallery> File:G37_Rear.jpg|Rear view of the 2011 Endless G37 EPL. </gallery> 395f545696c834236b3adf24e748a149d14c3c80 2005 Fard Mustang GT 0 1168 1506 2022-08-30T05:45:43Z S30Z 2 Created page with "{{Carinfo |name=2005 Fard Mustang GT |image=05Stang_Front.jpg |make=Fard |type=Coupe |price=$10,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation) |rlname=Ford Mustang (5th gen) |limited=0 |electric=0 }} The 2005 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $10,950. ==Stats== The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {{Stocksta..." wikitext text/x-wiki {{Carinfo |name=2005 Fard Mustang GT |image=05Stang_Front.jpg |make=Fard |type=Coupe |price=$10,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation) |rlname=Ford Mustang (5th gen) |limited=0 |electric=0 }} The 2005 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $10,950. ==Stats== The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=320|whval=3483|spdval=142|drv=RWD}} {{Maxstats|hpval=960|tqval=822|whval=2983|spdval=215}} ==Gallery== <gallery> File:05Stang_Rear.jpg|Rear view of the 2005 Fard Mustang GT. </gallery> 8c5695e62a9dbab5a303e737b5acc650e0177ea8 2005 Handa Integra Type R 0 1169 1507 2022-08-30T05:46:01Z S30Z 2 Created page with "{{Carinfo |name=2005 Handa Integra Type R |image=DC5_Front.jpg |make=Handa |type=Coupe |price=$27,919 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Integra_(fourth_generation) |rlname=Honda Integra (DC5) |limited=0 |electric=0 }} The 2005 Handa Integra Type R is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $27,919. ==Stats== The Integra Type R has 4 seats and a fuel capacity of 13 gallons...." wikitext text/x-wiki {{Carinfo |name=2005 Handa Integra Type R |image=DC5_Front.jpg |make=Handa |type=Coupe |price=$27,919 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Integra_(fourth_generation) |rlname=Honda Integra (DC5) |limited=0 |electric=0 }} The 2005 Handa Integra Type R is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $27,919. ==Stats== The Integra Type R has 4 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=217|tqval=152|whval=2623|spdval=149|drv=FWD}} {{Maxstats|hpval=1074|tqval=1017|whval=2123|spdval=181}} ==Gallery== <gallery> File:DC5_Rear.jpg|Rear view of the 2005 Handa Integra Type R. </gallery> bd89ea16c51964f7b4dfcc62787a524e38704cdb 2011 Edison Roadster Sport 2.5 0 1170 1508 2022-08-30T05:46:22Z S30Z 2 Created page with "{{Carinfo |name=2011 Edison Roadster Sport 2.5 |image=11Roadster_Front.jpg |make=Edison |type=Coupe |price=$86,100 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Roadster_(first_generation) |rlname=Tesla Roadster (1st gen.) |limited=0 |electric=1 }} The 2011 Edison Roadster Sport 2.5 is a two door coupe produced by [[Edison]]. It can be purchased from the dealership for $86,100. ==Stats== The Roadster has 2 seats. As an electric..." wikitext text/x-wiki {{Carinfo |name=2011 Edison Roadster Sport 2.5 |image=11Roadster_Front.jpg |make=Edison |type=Coupe |price=$86,100 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Roadster_(first_generation) |rlname=Tesla Roadster (1st gen.) |limited=0 |electric=1 }} The 2011 Edison Roadster Sport 2.5 is a two door coupe produced by [[Edison]]. It can be purchased from the dealership for $86,100. ==Stats== The Roadster has 2 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=288|tqval=295|whval=2723|spdval=143|drv=RWD}} {{Maxstats|hpval=288|tqval=295|whval=2223|spdval=156}} ==Gallery== <gallery> File:11Roadster_Rear.jpg|Rear view of the 2011 Edison Roadster Sport 2.5. </gallery> 37d6830df8006ec891a7da66b9d5fec4ccaa87e3 2013 BNW M3 0 1171 1509 2022-08-30T05:46:39Z S30Z 2 Created page with "{{Carinfo |name=2013 BNW M3 |image=E92_Front.jpg |make=BNW |type=Coupe |price=$42,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M3#E90/E92/E93_generation_(2007%E2%80%932013) |rlname=BMW M3 (E92) |limited=0 |electric=0 }} The 2013 BNW M3 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $42,990. ==Stats== The M3 has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=414|tqval=295|w..." wikitext text/x-wiki {{Carinfo |name=2013 BNW M3 |image=E92_Front.jpg |make=BNW |type=Coupe |price=$42,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M3#E90/E92/E93_generation_(2007%E2%80%932013) |rlname=BMW M3 (E92) |limited=0 |electric=0 }} The 2013 BNW M3 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $42,990. ==Stats== The M3 has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=414|tqval=295|whval=3704|spdval=156|drv=RWD}} {{Maxstats|hpval=1071|tqval=702|whval=3204|spdval=206}} ==Gallery== <gallery> File:E92_Rear.jpg|Rear view of the 2013 BNW M3. </gallery> 7fdf3f59f86f1fa8ce34a6b21342bb019c031aff 2008 Muaraci-Bens CLK63 AGM 0 1172 1510 2022-08-30T05:47:04Z S30Z 2 Created page with "{{Carinfo |name=2008 Muaraci-Bens CLK63 AGM |image=CLK63_Front.jpg |make=Muaraci-Bens |type=Coupe |price=$148,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_CLK-Class_(C209)#CLK_63_AMG_Black_Series_(2007-2009) |rlname=Mercedes-Benz CLK 63 AMG Black Series |limited=0 |electric=0 }} The 2008 Muaraci-Bens CLK63 AGM is a two door coupe produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $148,000. ==S..." wikitext text/x-wiki {{Carinfo |name=2008 Muaraci-Bens CLK63 AGM |image=CLK63_Front.jpg |make=Muaraci-Bens |type=Coupe |price=$148,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_CLK-Class_(C209)#CLK_63_AMG_Black_Series_(2007-2009) |rlname=Mercedes-Benz CLK 63 AMG Black Series |limited=0 |electric=0 }} The 2008 Muaraci-Bens CLK63 AGM is a two door coupe produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $148,000. ==Stats== The CLK63 AGM has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=507|tqval=465|whval=3948|spdval=186|drv=RWD}} {{Maxstats|hpval=1150|tqval=962|whval=3215|spdval=223}} ==Gallery== <gallery> File:CLK63_Rear.jpg|Rear view of the 2008 Muaraci-Bens CLK63 AGM. </gallery> cbf004c94c6bb4d4d0be2367e68e29dc0da26da5 2021 BNW Z4 0 1173 1511 2022-08-30T05:47:25Z S30Z 2 Created page with "{{Carinfo |name=2021 BNW Z4 |image=Z4_Front.jpg |make=BNW |type=Coupe |price=$57,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_Z4_(G29) |rlname=BMW Z4 (G29) |limited=0 |electric=0 }} The 2021 BNW Z4 is a two door convertible produced by [[BNW]]. It can be purchased from the dealership for $57,250. ==Stats== The Z4 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=382|tqval=369|whval=3444|spdval=154|drv=RWD}} {..." wikitext text/x-wiki {{Carinfo |name=2021 BNW Z4 |image=Z4_Front.jpg |make=BNW |type=Coupe |price=$57,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_Z4_(G29) |rlname=BMW Z4 (G29) |limited=0 |electric=0 }} The 2021 BNW Z4 is a two door convertible produced by [[BNW]]. It can be purchased from the dealership for $57,250. ==Stats== The Z4 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=382|tqval=369|whval=3444|spdval=154|drv=RWD}} {{Maxstats|hpval=984|tqval=1090|whval=2944|spdval=202}} ==Gallery== <gallery> File:Z4_Rear.jpg|Rear view of the 2021 BNW Z4. File:Z4_Interior.jpg|Interior shot of the 2021 BNW Z4. </gallery> d5d7c353278b328226ceaea7db6c802e85cdcc03 2002 Mazday RX-7 Sprint-R 0 1174 1512 2022-08-30T05:47:47Z S30Z 2 Created page with "{{Carinfo |name=2002 Mazday RX-7 Sprint-R |image=FD3S_Front.jpg |make=Mazday |type=Coupe |price=$65,475 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-7#Third_generation_(FD3S) |rlname=Mazda RX-7 Spirit R (FD3S) |limited=0 |electric=0 }} The 2002 Mazday RX-7 Sprint-R is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $65,475. ==Stats== The RX-7 Sprint-R has 2 seats and a fuel capacity of 20..." wikitext text/x-wiki {{Carinfo |name=2002 Mazday RX-7 Sprint-R |image=FD3S_Front.jpg |make=Mazday |type=Coupe |price=$65,475 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-7#Third_generation_(FD3S) |rlname=Mazda RX-7 Spirit R (FD3S) |limited=0 |electric=0 }} The 2002 Mazday RX-7 Sprint-R is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $65,475. ==Stats== The RX-7 Sprint-R has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=280|tqval=231|whval=2778|spdval=162|drv=RWD}} {{Maxstats|hpval=1188|tqval=949|whval=2278|spdval=185}} ==Gallery== <gallery> File:FD3S_Rear.jpg|Rear view of the 2002 Mazday RX-7 Sprint-R. </gallery> c11c21f560efcd223c1605b54315fb3d18d6b2db 2015 Hayunai Genesis Coupe 0 1175 1513 2022-08-30T05:48:20Z S30Z 2 Created page with "{{Carinfo |name=2015 Hayunai Genesis Coupe |image=Gencoupe_Front.jpg |make=Hayunai |type=Coupe |price=$27,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Genesis_Coupe |rlname=Hyundai Genesis Coupe |limited=0 |electric=0 }} The 2015 Hayunai Genesis Coupe is a two door coupe produced by [[Hayunai]]. It can be purchased from the dealership for $27,990. ==Stats== The Genesis Coupe has 4 seats and a fuel capacity of 17 gallons...." wikitext text/x-wiki {{Carinfo |name=2015 Hayunai Genesis Coupe |image=Gencoupe_Front.jpg |make=Hayunai |type=Coupe |price=$27,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Genesis_Coupe |rlname=Hyundai Genesis Coupe |limited=0 |electric=0 }} The 2015 Hayunai Genesis Coupe is a two door coupe produced by [[Hayunai]]. It can be purchased from the dealership for $27,990. ==Stats== The Genesis Coupe has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=348|tqval=295|whval=3515|spdval=148|drv=RWD}} {{Maxstats|hpval=998|tqval=940|whval=3100|spdval=199}} ==Gallery== <gallery> File:Gencoupe_Rear.jpg|Rear view of the 1995 Naan 300ZX TT. </gallery> 93872e8819e227bd897c81cb81f8912b8e4761d7 1514 1513 2022-08-30T05:48:44Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2015 Hayunai Genesis Coupe |image=Gencoupe_Front.jpg |make=Hayunai |type=Coupe |price=$27,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Genesis_Coupe |rlname=Hyundai Genesis Coupe |limited=0 |electric=0 }} The 2015 Hayunai Genesis Coupe is a two door coupe produced by [[Hayunai]]. It can be purchased from the dealership for $27,990. ==Stats== The Genesis Coupe has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=348|tqval=295|whval=3515|spdval=148|drv=RWD}} {{Maxstats|hpval=998|tqval=940|whval=3100|spdval=199}} ==Gallery== <gallery> File:Gencoupe_Rear.jpg|Rear view of the 2015 Hayunai Genesis Coupe. </gallery> ab73fcf827aa6b92e6302c5a50694826bacaeb55 1995 Naan 300ZX TT 0 1176 1515 2022-08-30T05:49:01Z S30Z 2 Created page with "{{Carinfo |name=1995 Naan 300ZX TT |image=Z32_Front.jpg |make=Naan |type=Coupe |price=$14,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_300ZX |rlname=Nissan 300ZX (Z32) |limited=0 |electric=0 }} The 1995 Naan 300ZX TT is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $14,900. ==Stats== The 300ZX TT has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=300|tqval=332|whval=3487..." wikitext text/x-wiki {{Carinfo |name=1995 Naan 300ZX TT |image=Z32_Front.jpg |make=Naan |type=Coupe |price=$14,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_300ZX |rlname=Nissan 300ZX (Z32) |limited=0 |electric=0 }} The 1995 Naan 300ZX TT is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $14,900. ==Stats== The 300ZX TT has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=300|tqval=332|whval=3487|spdval=155|drv=RWD}} {{Maxstats|hpval=1219|tqval=962|whval=3087|spdval=191}} ==Gallery== <gallery> File:Z32_Rear.jpg|Rear view of the 1995 Naan 300ZX TT. </gallery> a8a2d7176d88a0df3c391de07061b49d369dc758 2002 Naan Silvia S15 0 1177 1516 2022-08-30T05:49:21Z S30Z 2 Created page with "{{Carinfo |name=2002 Naan Silvia S15 |image=S15_Front.jpg |make=Naan |type=Coupe |price=$22,750 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Silvia#S15 |rlname=Nissan Silvia (S15) |limited=0 |electric=0 }} The 2002 Naan Silvia S15 is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $22,750. ==Stats== The Evora S has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=247|tqval=203|w..." wikitext text/x-wiki {{Carinfo |name=2002 Naan Silvia S15 |image=S15_Front.jpg |make=Naan |type=Coupe |price=$22,750 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Silvia#S15 |rlname=Nissan Silvia (S15) |limited=0 |electric=0 }} The 2002 Naan Silvia S15 is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $22,750. ==Stats== The Evora S has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=247|tqval=203|whval=2734|spdval=151|drv=RWD}} {{Maxstats|hpval=1113|tqval=1039|whval=2234|spdval=190}} ==Gallery== <gallery> File:S15_Rear.jpg|Rear view of the 2002 Naan Silvia S15. </gallery> a6ec4ac7faad27aef220a88a8e39616e4cdb7465 File:Strigid Wordmark.svg 6 257 1517 411 2022-08-30T05:51:30Z S30Z 2 Protected "[[File:Strigid Wordmark.svg]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite)) wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Strigid Logo.png 6 259 1518 412 2022-08-30T05:51:40Z S30Z 2 Protected "[[File:Strigid Logo.png]]" ([Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) [Upload=Allow only administrators] (indefinite)) wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Aero 0 1178 1519 2022-08-30T05:55:34Z S30Z 2 Created page with "{{Makeinfo|makename=Aero|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ariel_Motor_Company|rlname=Ariel}} Aero is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ariel_Motor_Company Ariel]. == Vehicles by Aero == You can find all vehicles made by Aero [[:Category:Aero|here]]." wikitext text/x-wiki {{Makeinfo|makename=Aero|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Ariel_Motor_Company|rlname=Ariel}} Aero is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Ariel_Motor_Company Ariel]. == Vehicles by Aero == You can find all vehicles made by Aero [[:Category:Aero|here]]. 21a1f5db0a58b245d78a30efa0c171938ce2ba0f Endless 0 1179 1520 2022-08-30T05:56:50Z S30Z 2 Created page with "{{Makeinfo|makename=Endless|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Infiniti|rlname=Infiniti}} Endless is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Infiniti Infiniti]. == Vehicles by Endless == You can find all vehicles made by Endless [[:Category:Endless|here]]." wikitext text/x-wiki {{Makeinfo|makename=Endless|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Infiniti|rlname=Infiniti}} Endless is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Infiniti Infiniti]. == Vehicles by Endless == You can find all vehicles made by Endless [[:Category:Endless|here]]. f1f72dc2bcc9aa7553d52d90609a6b58c50ecacd Infiniti 0 1180 1521 2022-08-30T05:57:39Z S30Z 2 Redirected page to [[Endless]] wikitext text/x-wiki #REDIRECT [[Endless]] 748b62caa0c841dffbe59d5bcb16601c7aa2c96e Ariel 0 1181 1522 2022-08-30T05:57:52Z S30Z 2 Redirected page to [[Aero]] wikitext text/x-wiki #REDIRECT [[Aero]] ae1bb2c7c9e7a2d10580fa59d7e6112a1375bf46 Category:Aero 14 1182 1523 2022-08-30T05:58:15Z S30Z 2 Created page with "All Aero vehicles in Southwest Florida." wikitext text/x-wiki All Aero vehicles in Southwest Florida. a13538b09e33103650c3af7c783f700677e500cb Category:Endless 14 1183 1524 2022-08-30T05:58:31Z S30Z 2 Created page with "All Endless vehicles in Southwest Florida." wikitext text/x-wiki All Endless vehicles in Southwest Florida. 7c2fac769b0cd2da7a8c3566bd74eb801490adf6 2022 Fard Bronco TRT 0 514 1525 784 2022-08-30T08:03:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Fard Bronco TRT |image=TRT_Front.jpg |make=Fard |type=SUV |price=$65,730 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021) |rlname=Ford Bronco (6th gen.) |limited=1 |electric=0 }} The 2022 Fard Bronco TRT is a four door SUV produced by [[Fard]]. It is a limited vehicle that was added on August 24, 2022. It was available for 48 hours and can no longer be purchased. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Bronco TRT has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=330|tqval=415|whval=4757|spdval=123|drv=AWD}} {{Maxstats|hpval=1023|tqval=2066|whval=4257|spdval=197}} ==Gallery== <gallery> File:TRT_Rear.jpg|Rear view of the 2022 Fard Bronco TRT. </gallery> 6d014df9bfa9223a51ff537d50ac1c3aff42de0a 2021 GEC Yukon 0 186 1526 336 2022-08-30T08:04:13Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 GEC Yukon |image=Yukon_Front.jpg |make=GEC |type=SUV |price=$89,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Fifth_generation_(2021) |rlname=Chevrolet Tahoe/GMC Yukon (5th gen.) |limited=0 |electric=0 }} The 2021 GEC Yukon is a four door SUV produced by [[GEC]]. It can be purchased from the dealership for $89,900. ==Stats== The Yukon has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=420|tqval=460|whval=5827|spdval=110|drv=AWD}} {{Maxstats|hpval=1111|tqval=1440|whval=5327|spdval=175}} ==Gallery== <gallery> File:Yukon_Rear.jpg|Rear view of the 2021 GEC Yukon. </gallery> a0c890c9043cdf98066d4e3de1d0b9d6fac412a3 2014 Toyoto FJ Cruiser 0 1021 1527 1354 2022-08-30T08:04:27Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2014 Toyoto FJ Cruiser|image=FJ Cruiser Front.png|make=Toyoto|type=SUV|price=$37,999|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser|rlname=Toyota FJ Cruiser|limited=0|electric=0}} The 2014 Toyoto FJ Cruiser is a 4-door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $37,999. == Stats == The FJ Cruiser seats 5 people and has a maximum fuel capacity of 18.9 gallons {{Stockstats|hpval=259|tqval=278|whval=4,343|spdval=105|drv=AWD}}{{Maxstats|hpval=906|tqval=887|whval=3,843|spdval=179}} == Gallery == [[File:FJ Cruiser Rear.png|left|thumb|Rier view of the FJ Cruiser]] 8bffa2f584555c9cacfe6a72af2886a2b8592dcf File:Atlas Front.jpg 6 1184 1528 2022-08-30T08:33:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Atlas Rear.jpg 6 1185 1529 2022-08-30T08:33:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:IX Rear.jpg 6 1186 1530 2022-08-30T08:33:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:IX Front.jpg 6 1187 1531 2022-08-30T08:33:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bronco4D Rear.jpg 6 1188 1532 2022-08-30T08:34:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bronco4D Front.jpg 6 1189 1533 2022-08-30T08:34:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackhawk Rear.jpg 6 1190 1534 2022-08-30T08:34:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackhawk Front.jpg 6 1191 1535 2022-08-30T08:35:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RRSport Rear.jpg 6 1192 1536 2022-08-30T08:41:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RRSport Front.jpg 6 1193 1537 2022-08-30T08:42:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Passport Rear.jpg 6 1194 1538 2022-08-30T08:42:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Passport Front.jpg 6 1195 1539 2022-08-30T08:43:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Handa Passport 0 1196 1540 2022-08-30T08:43:49Z S30Z 2 Created page with " {{Carinfo |name=2020 Handa Passport |image=Passport_Front.jpg |make=Handa |type=SUV |price=$43,780 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Passport#Third_generation_(YF7/8;_2019) |rlname=Honda Passport (3rd gen.) |limited=0 |electric=0 }} The 2020 Handa Passport is a four door SUV produced by [[Handa]]. It can be purchased from the dealership for $43,780. ==Stats== The Passport has 7 seats and a fuel capacity of 20 gallons..." wikitext text/x-wiki {{Carinfo |name=2020 Handa Passport |image=Passport_Front.jpg |make=Handa |type=SUV |price=$43,780 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Passport#Third_generation_(YF7/8;_2019) |rlname=Honda Passport (3rd gen.) |limited=0 |electric=0 }} The 2020 Handa Passport is a four door SUV produced by [[Handa]]. It can be purchased from the dealership for $43,780. ==Stats== The Passport has 7 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=279|tqval=280|whval=4237|spdval=105|drv=AWD}} {{Maxstats|hpval=933|tqval=1352|whval=3737|spdval=197}} ==Gallery== <gallery> File:Passport_Rear.jpg|Rear view of the 2020 Handa Passport. </gallery> b74bf8c192b758ded8e0455186063abb904996d0 2016 Range Runner Sport 0 1197 1541 2022-08-30T08:45:22Z S30Z 2 Created page with " {{Carinfo |name=2016 Range Runner Sport |image=RRSport_Front.jpg |make=Range Runner |type=SUV |price=$72,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Sport#Second_generation_(L494;_2013%E2%80%932022) |rlname=Land Rover Range Rover Sport (2nd gen.) |limited=0 |electric=0 }} The 2016 Range Runner Sport is a four door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $72,350. ==Stats== The Ran..." wikitext text/x-wiki {{Carinfo |name=2016 Range Runner Sport |image=RRSport_Front.jpg |make=Range Runner |type=SUV |price=$72,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Sport#Second_generation_(L494;_2013%E2%80%932022) |rlname=Land Rover Range Rover Sport (2nd gen.) |limited=0 |electric=0 }} The 2016 Range Runner Sport is a four door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $72,350. ==Stats== The Range Runner Sport has 7 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=375|tqval=346|whval=5148|spdval=132|drv=AWD}} {{Maxstats|hpval=1058|tqval=1278|whval=4648|spdval=212}} ==Gallery== <gallery> File:RRSport_Rear.jpg|Rear view of the 2016 Range Runner Sport. </gallery> 242127bcc2a6829f1bfcfaec0a25bf07f4053287 2020 Jeff Trackhawk 0 1198 1542 2022-08-30T08:45:43Z S30Z 2 Created page with " {{Carinfo |name=2020 Jeff Trackhawk |image=Trackhawk_Front.jpg |make=Jeff |type=SUV |price=$87,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Grand_Cherokee_(WK2) |rlname=Jeep Grand Cherokee SRT Trackhawk |limited=0 |electric=0 }} The 2020 Jeff Trackhawk is a four door SUV produced by [[Jeff]]. It can be purchased from the dealership for $87,400. ==Stats== The Trackhawk has 5 seats and a fuel capacity of 25 gallons. {{Stockst..." wikitext text/x-wiki {{Carinfo |name=2020 Jeff Trackhawk |image=Trackhawk_Front.jpg |make=Jeff |type=SUV |price=$87,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Grand_Cherokee_(WK2) |rlname=Jeep Grand Cherokee SRT Trackhawk |limited=0 |electric=0 }} The 2020 Jeff Trackhawk is a four door SUV produced by [[Jeff]]. It can be purchased from the dealership for $87,400. ==Stats== The Trackhawk has 5 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=707|tqval=686|whval=5355|spdval=176|drv=AWD}} {{Maxstats|hpval=1195|tqval=1630|whval=4855|spdval=217}} ==Gallery== <gallery> File:Trackhawk_Rear.jpg|Rear view of the 2020 Jeff Trackhawk. </gallery> 0a4a81ebf1f09ba01d5b46c9e563ecf0dab40ddb 2022 Fard Bronco 4-Door 0 1199 1543 2022-08-30T08:46:07Z S30Z 2 Created page with " {{Carinfo |name=2022 Fard Bronco 4-Door |image=Bronco4D_Front.jpg |make=Fard |type=SUV |price=$54,735 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021) |rlname=Ford Bronco (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Bronco 4-Door is an SUV produced by [[Fard]]. It can be purchased from the dealership for $54,735. ==Stats== The Bronco 4-Door has 5 seats and a fuel capacity of 21 gallons. {{..." wikitext text/x-wiki {{Carinfo |name=2022 Fard Bronco 4-Door |image=Bronco4D_Front.jpg |make=Fard |type=SUV |price=$54,735 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021) |rlname=Ford Bronco (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Bronco 4-Door is an SUV produced by [[Fard]]. It can be purchased from the dealership for $54,735. ==Stats== The Bronco 4-Door has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=330|tqval=415|whval=4757|spdval=125|drv=AWD}} {{Maxstats|hpval=1023|tqval=2066|whval=4257|spdval=197}} ==Gallery== <gallery> File:Bronco4D_Rear.jpg|Rear view of the 2022 Fard Bronco 4-Door. </gallery> 28e2f78e0c1ebfa400fefddb422f576fe295971b 2022 BNW iX 0 1200 1544 2022-08-30T08:46:26Z S30Z 2 Created page with " {{Carinfo |name=2022 BNW iX |image=iX_Front.jpg |make=BNW |type=SUV |price=$87,600 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_iX |rlname=BMW iX |limited=0 |electric=1 }} The 2022 BNW iX is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $87,600. ==Stats== The iX has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stocksta..." wikitext text/x-wiki {{Carinfo |name=2022 BNW iX |image=iX_Front.jpg |make=BNW |type=SUV |price=$87,600 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_iX |rlname=BMW iX |limited=0 |electric=1 }} The 2022 BNW iX is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $87,600. ==Stats== The iX has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=516|tqval=564|whval=5659|spdval=124|drv=AWD}} {{Maxstats|hpval=516|tqval=564|whval=5159|spdval=124}} ==Gallery== <gallery> File:iX_Rear.jpg|Rear view of the 2022 BNW iX. </gallery> 56d18ff63ef5f3ed13f33f583f9a2b10acc95da1 2018 Volkinsen Atlas 0 1201 1545 2022-08-30T08:46:46Z S30Z 2 Created page with " {{Carinfo |name=2018 Volkinsen Atlas |image=Atlas_Front.jpg |make=Volkinsen |type=SUV |price=$26,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Atlas |rlname=Volkswagen Atlas |limited=0 |electric=0 }} The 2018 Volkinsen Atlas is a four door SUV produced by [[Volkinsen]]. It can be purchased from the dealership for $26,999. ==Stats== The Atlas has 7 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=276|tqval=26..." wikitext text/x-wiki {{Carinfo |name=2018 Volkinsen Atlas |image=Atlas_Front.jpg |make=Volkinsen |type=SUV |price=$26,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volkswagen_Atlas |rlname=Volkswagen Atlas |limited=0 |electric=0 }} The 2018 Volkinsen Atlas is a four door SUV produced by [[Volkinsen]]. It can be purchased from the dealership for $26,999. ==Stats== The Atlas has 7 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=276|tqval=266|whval=4502|spdval=122|drv=AWD}} {{Maxstats|hpval=928|tqval=1103|whval=4002|spdval=210}} ==Gallery== <gallery> File:Atlas_Rear.jpg|Rear view of the 2018 Volkinsen Atlas. </gallery> de4c88d63ca80b26ddd907ee54843e4eb57293f7 2009 Naan 350Z Nizmo 0 886 1546 1244 2022-08-30T21:31:27Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == [[File:350Nismo Rear.png|thumb|left|The rear view of the 350z Nizmo. ]] b5388f4bd7f2f180b598b5dadc00e3684091c84e 1570 1546 2022-08-31T00:26:38Z S30Z 2 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.png|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == [[File:350Nismo Rear.png|thumb|left|The rear view of the 350Z Nizmo. ]] eb8744a78667f265dfa81950ced0601e275e9679 2017 Naan 370Z 0 979 1547 1312 2022-08-30T21:32:03Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z|image=370z_front.jpg|make=Naan|type=Coupe|price=$32,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#2013_model_year_update_(2012–2020)|rlname=Nissan 370Z (Z34)|limited=0|electric=0}} The 2017 Naan 370Z is two-seater sportscar manufactured by [[Naan]]. It is the successor to the [[2009 Naan 350Z|Naan 350Z]]. It can be purchased from the dealership for $32,998. == Stats == The 370Z has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=323|tqval=270|whval=3,298|spdval=155|drv=RWD}}{{Maxstats|hpval=1,248|tqval=1,122|whval=2,798|spdval=207}} == Gallery == <gallery widths="300" heights="300"> File:370z rear.jpg|The rear view of the 370Z. </gallery> b8fb523f10c95cbc796ff2a56be05408f2cf884c File:Durango front.jpg 6 1202 1548 2022-08-30T22:16:41Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Durango rear.jpg 6 1203 1549 2022-08-30T22:17:13Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Dodje Durango SRT Badcat 0 1204 1550 2022-08-30T22:30:35Z Cheemsthethird 10 Created page with "{{Carinfo|name=2021 Dodje Durango SRT Badcat|image=durango_front.jpg|make=Dodje|type=SUV|price=$88,520|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Dodge_Durango#Third_generation_(WD;_2011)|rlname=Dodge Durango SRT Hellcat|limited=0|electric=0}} The 2021 Dodje Durango SRT Badcat is a high-performance SUV manufactured by [[Dodje]]. It can be purchased from the dealership for $88,520. == Stats == The Durango SRT Badcat has 5 seats and a..." wikitext text/x-wiki {{Carinfo|name=2021 Dodje Durango SRT Badcat|image=durango_front.jpg|make=Dodje|type=SUV|price=$88,520|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Dodge_Durango#Third_generation_(WD;_2011)|rlname=Dodge Durango SRT Hellcat|limited=0|electric=0}} The 2021 Dodje Durango SRT Badcat is a high-performance SUV manufactured by [[Dodje]]. It can be purchased from the dealership for $88,520. == Stats == The Durango SRT Badcat has 5 seats and a maximum fuel capacity of 25 gallons. {{Stockstats|hpval=710|tqval=640|whval=5,710|spdval=179|drv=AWD}}{{Maxstats|hpval=1,197|tqval=1,632|whval=5,210|spdval=226}} c5dd0b7a9f97b5138634be11720b68c72736d4b3 1551 1550 2022-08-30T22:31:49Z Cheemsthethird 10 wikitext text/x-wiki {{Carinfo|name=2021 Dodje Durango SRT Badcat|image=durango_front.jpg|make=Dodje|type=SUV|price=$88,520|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Dodge_Durango#Third_generation_(WD;_2011)|rlname=Dodge Durango SRT Hellcat|limited=0|electric=0}} The 2021 Dodje Durango SRT Badcat is a high-performance SUV manufactured by [[Dodje]]. It can be purchased from the dealership for $88,520. == Stats == The Durango SRT Badcat has 5 seats and a maximum fuel capacity of 25 gallons. {{Stockstats|hpval=710|tqval=640|whval=5,710|spdval=179|drv=AWD}}{{Maxstats|hpval=1,197|tqval=1,632|whval=5,210|spdval=226}} == Gallery == [[File:Durango rear.jpg|left|thumb|The rear view of the Durango SRT Badcat]] d3422617a2a7a6e6c8bc740a867c187cedf276d5 File:Modelx front.jpg 6 1207 1554 2022-08-30T23:39:58Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Modelx rear.jpg 6 1208 1555 2022-08-30T23:40:37Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Edison Model X 0 1209 1556 2022-08-30T23:52:12Z Cheemsthethird 10 Created page with "{{Carinfo|name=2020 Edison Model X|image=modelx_front.jpg|make=Edison|type=SUV|price=$123,990|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Tesla_Model_X|rlname=Tesla Model X|limited=0|electric=1}} The 2020 Edison Model X is an electric SUV manufactured by [[Edison]]. It can be purchased from the dealership for $123,990. == Stats == The Model X has a seating capacity of 7. As an electric vehicle, engine and transmission cannot be upgra..." wikitext text/x-wiki {{Carinfo|name=2020 Edison Model X|image=modelx_front.jpg|make=Edison|type=SUV|price=$123,990|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Tesla_Model_X|rlname=Tesla Model X|limited=0|electric=1}} The 2020 Edison Model X is an electric SUV manufactured by [[Edison]]. It can be purchased from the dealership for $123,990. == Stats == The Model X has a seating capacity of 7. As an electric vehicle, engine and transmission cannot be upgraded, and gearing cannot be adjusted. {{Stockstats|hpval=779|tqval=409|whval=5,531|spdval=160|drv=AWD}}{{Maxstats|hpval=779|tqval=409|whval=5,031|spdval=162}} == Gallery == <gallery widths="300" heights="300"> File:Modelx rear.jpg|The rear view of the Model X. </gallery> e637b0cd55212300963b2add2129319386d9c4fe File:G550 front.jpg 6 1210 1557 2022-08-30T23:55:15Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G550 rear.jpg 6 1211 1558 2022-08-30T23:55:34Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Toyoto Sequoia TRD-Pro 0 1212 1559 2022-08-31T00:02:35Z HPtheamazing 9 Created page with "{{Carinfo|name=2023 Toyoto Sequoia TRD-Pro|image=Sequoia Front.png|make=Toyoto|type=SUV|price=$67,050|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Sequoia#Third_generation_(XK80;_2022)|rlname=2023 Toyota Sequoia (3rd gen.)|limited=0|electric=0}} The 2023 Toyoto Sequoia TRD-Pro is a four door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $67,050. == Stats == The Sequoia TRD-Pro seats 7 people and has a ma..." wikitext text/x-wiki {{Carinfo|name=2023 Toyoto Sequoia TRD-Pro|image=Sequoia Front.png|make=Toyoto|type=SUV|price=$67,050|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Sequoia#Third_generation_(XK80;_2022)|rlname=2023 Toyota Sequoia (3rd gen.)|limited=0|electric=0}} The 2023 Toyoto Sequoia TRD-Pro is a four door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $67,050. == Stats == The Sequoia TRD-Pro seats 7 people and has a maximum fuel capacity of 31.9 gallons {{Stockstats|hpval=437|tqval=583|whval=5,730|spdval=130|drv=AWD}}{{Maxstats|hpval=1,105|tqval=1,737|whval=5,230|spdval=197}} == Gallery == [[File:Sequoia Rear.png|left|thumb|Rear view of the Sequoia TRD-Pro]] 741c9673772254a659f6dfed924ba0283a1aa95e 2021 Muaraci-Bens G550 0 1213 1560 2022-08-31T00:08:59Z Cheemsthethird 10 Created page with "{{Carinfo|name=2021 Muaraci-Bens G550|image=g550_front.jpg|make=Muaraci-Bens|type=SUV|price=$130,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_G-Class#G-Class_W463,_second_generation_(2018–present)|rlname=Mercedes-Benz G550|limited=0|electric=0}} The 2021 Muaraci-Bens G550 is a luxury SUV manufactured by [[Muaraci-Bens]]. It can be purchased from the dealership for $130,900. == Stats == The G550 has 5 seats and a max..." wikitext text/x-wiki {{Carinfo|name=2021 Muaraci-Bens G550|image=g550_front.jpg|make=Muaraci-Bens|type=SUV|price=$130,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_G-Class#G-Class_W463,_second_generation_(2018–present)|rlname=Mercedes-Benz G550|limited=0|electric=0}} The 2021 Muaraci-Bens G550 is a luxury SUV manufactured by [[Muaraci-Bens]]. It can be purchased from the dealership for $130,900. == Stats == The G550 has 5 seats and a maximum fuel capacity of 25 gallons. {{Stockstats|hpval=416|tqval=510|whval=5,551|spdval=130|drv=AWD}}{{Maxstats|hpval=967|tqval=1,273|whval=5,051|spdval=194}} == Gallery == <gallery widths="300" heights="300"> File:G550 rear.jpg|The rear view of the G550. </gallery> 487f7e25cf96d856b392901eab8d285ae4e5e4bf File:RaftCageOld.jpg 6 1214 1561 2022-08-31T00:22:06Z S30Z 2 Picture taken by Hank wikitext text/x-wiki == Summary == Picture taken by Hank be3eeb1687766ef8688aeb7888b59ae6f5e0dbdf File:Hut.jpg 6 1217 1564 2022-08-31T00:24:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trail.jpg 6 1218 1566 2022-08-31T00:25:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:OffroadTrack.jpg 6 1219 1567 2022-08-31T00:25:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BackroomDoor.jpg 6 1220 1568 2022-08-31T00:26:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Backroom.jpg 6 1221 1569 2022-08-31T00:26:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RaftCageNow.jpg 6 1222 1571 2022-08-31T00:27:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RaftCageLoc.jpg 6 1223 1572 2022-08-31T00:27:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policeboat.jpg 6 1230 1579 2022-08-31T00:29:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PBBuildLoc.jpg 6 1231 1580 2022-08-31T00:29:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LacyAndSkittles.jpg 6 1232 1581 2022-08-31T00:29:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Easter Eggs 0 1233 1582 2022-08-31T00:40:48Z S30Z 2 Created page with "This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob S..." wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == Bugged Houses == In the Bonita Cove cul-de-sac near Fintech, there are a total of 6 bugged houses. These houses are facing away from the road and have missing or misplaced doors and window textures. <gallery> File:Bughouse1.jpg File:Bughouse2.jpg File:Bughouse3.jpg File:Bughouse4.jpg File:Bughouse5.jpg File:Bughouse6.jpg </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a gated pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> 0a75f8f81cc3d15ce0ef5a5e2fc773f15ecd4761 Main Page 0 1 1583 1207 2022-08-31T00:41:22Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! Fun fact: This wiki has a dark mode! You can find it in the menu on the top left. ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. [[Contributing]] ===For editors=== [[Guides]] ebaedfde4fa7c84a294ca53147774b58abdb5a7f Apartment Concierge 0 290 1584 605 2022-08-31T02:16:45Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Apartment Concierge job requires staying inside the Gulf Paradise Condos, located across from Seaside. Players do not need to own any gamepass to work at this job. |resp= *Provide citizens with information about available apartments/condos *Maintain vacant properties *Enforce housing rules on tenants |rank1=Assistant |rank1pay=$250 |rank2=Concierge |rank2pay=N/A |rank3=Head Concierge |rank3pay=N/A |rank4=Supervisor |rank4pay=N/A |rank5=Manager |rank5pay=N/A}} 0cca039c2eb44ab3c863eb06e8542b8f11fdd5ba Criminal 0 292 1585 555 2022-08-31T02:47:11Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs (if they both have PVP enabled). Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. *Enforce housing rules on tenants |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" |+Businesses that can be robbed !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |None |3 cash registers |80s per register |300s (5m) per register |- |StudRac |None |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register(?) |300s (5m) per register(?) |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (approx. 30 minutes) |} a11702a3a8644621c169fbd8b1c829b64622d56f 1586 1585 2022-08-31T02:49:06Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs (if they both have PVP enabled). Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. *Enforce housing rules on tenants |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" |+Businesses that can be robbed !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register(?) |300s (5m) per register(?) |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (approx. 30 minutes) |} 157a0f769528945748e4764004c6d6466100671f 1587 1586 2022-08-31T04:18:20Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs (if they both have PVP enabled). Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. *Enforce housing rules on tenants |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" |+Businesses that can be robbed !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (approx. 30 minutes) |} 20f6e0cebc3ea86698c14b15d5fcd5da0d287535 1588 1587 2022-08-31T04:19:08Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs (if they both have PVP enabled). Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" |+Businesses that can be robbed !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (approx. 30 minutes) |} e046ac116898e84d54662189a932f7b60c6d13a6 1589 1588 2022-08-31T04:19:50Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, if they both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" |+Businesses that can be robbed !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (approx. 30 minutes) |} b1e53c6f7395be2d02867a85f35ae7a39471a464 1590 1589 2022-08-31T04:20:49Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, if they both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" |+Businesses that can be robbed !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (33m) |} 1e29d7ab3d5a9987b5bfb9259fbe2a509edfe642 1591 1590 2022-08-31T04:21:46Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, if they both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (33m) |} 701df3f239b55d2b13fc395ec465bedbb974ac0e 1594 1591 2022-08-31T04:46:13Z Hank00 8 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, ONLY if both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (33m) |} 2b50f988148cbf2dd059441c0337099ad65bfba5 Easter Eggs 0 1233 1592 1582 2022-08-31T04:25:26Z S30Z 2 /* Bugged Houses */ wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == Bugged Houses == Around the Bonita Cove cul-de-sac near Fintech, there are a total of 6 bugged houses. These houses are facing away from the road and have missing or misplaced doors and window textures. <gallery> File:Bughouse1.jpg File:Bughouse2.jpg File:Bughouse3.jpg File:Bughouse4.jpg File:Bughouse5.jpg File:Bughouse6.jpg </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a gated pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> b8be50bb568a9aa0bb5c06f50277e263e2ceb3c9 1593 1592 2022-08-31T04:27:37Z S30Z 2 /* The Backroom */ wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == Bugged Houses == Around the Bonita Cove cul-de-sac near Fintech, there are a total of 6 bugged houses. These houses are facing away from the road and have missing or misplaced doors and window textures. <gallery> File:Bughouse1.jpg File:Bughouse2.jpg File:Bughouse3.jpg File:Bughouse4.jpg File:Bughouse5.jpg File:Bughouse6.jpg </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> 66ef1ed009691f21a8a068374c51321192fff1bd Police 0 297 1595 560 2022-08-31T22:42:06Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police Officer job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} ce1ed62d8d1a09cb3d5283760e4e8f73cd24b862 File:Forester Rear.jpg 6 1234 1596 2022-09-01T03:42:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Forester Front.jpg 6 1235 1597 2022-09-01T03:43:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CayenneCoupe Rear.jpg 6 1236 1598 2022-09-01T03:43:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CayenneCoupe Front.jpg 6 1237 1599 2022-09-01T03:44:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Velar Rear.jpg 6 1238 1600 2022-09-01T03:44:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Velar Front.jpg 6 1239 1601 2022-09-01T03:45:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:X7 Rear.jpg 6 1240 1602 2022-09-01T03:45:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:X7 Front.jpg 6 1241 1603 2022-09-01T03:46:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ModelY Rear.jpg 6 1242 1604 2022-09-01T03:46:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ModelY Front.jpg 6 1243 1605 2022-09-01T03:47:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RDX Rear.jpg 6 1244 1606 2022-09-01T03:48:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RDX Front.jpg 6 1245 1607 2022-09-01T03:48:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Axura RDX 0 1246 1608 2022-09-01T03:49:36Z S30Z 2 Created page with " {{Carinfo |name=2021 Axura RDX |image=RDX_Front.jpg |make=Axura |type=SUV |price=$46,100 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Acura_RDX#Third_generation_(TC1/2;_2019) |rlname=Acura RDX (3rd gen.) |limited=0 |electric=0 }} The 2021 Axura RDX is a four door SUV produced by [[Axura]]. It can be purchased from the dealership for $46,100. ==Stats== The RDX has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=279|tqva..." wikitext text/x-wiki {{Carinfo |name=2021 Axura RDX |image=RDX_Front.jpg |make=Axura |type=SUV |price=$46,100 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Acura_RDX#Third_generation_(TC1/2;_2019) |rlname=Acura RDX (3rd gen.) |limited=0 |electric=0 }} The 2021 Axura RDX is a four door SUV produced by [[Axura]]. It can be purchased from the dealership for $46,100. ==Stats== The RDX has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=279|tqval=258|whval=4015|spdval=120|drv=AWD}} {{Maxstats|hpval=954|tqval=1405|whval=3515|spdval=198}} ==Gallery== <gallery> File:RDX_Rear.jpg|Rear view of the 2021 Axura RDX. </gallery> 36f0c56b2e5d8153d77a41e559ebdb0178af40ce 2020 Edison Model Y 0 1247 1609 2022-09-01T03:50:25Z S30Z 2 Created page with " {{Carinfo |name=2020 Edison Model Y |image=ModelY_Front.jpg |make=Edison |type=SUV |price=$60,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Model_Y |rlname=Tesla Model Y |limited=0 |electric=1 }} The 2020 Edison Model Y is a four door SUV produced by [[Edison]]. It can be purchased from the dealership for $60,990. ==Stats== The Model Y has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed,..." wikitext text/x-wiki {{Carinfo |name=2020 Edison Model Y |image=ModelY_Front.jpg |make=Edison |type=SUV |price=$60,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Tesla_Model_Y |rlname=Tesla Model Y |limited=0 |electric=1 }} The 2020 Edison Model Y is a four door SUV produced by [[Edison]]. It can be purchased from the dealership for $60,990. ==Stats== The Model Y has 5 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=450|tqval=471|whval=4416|spdval=166|drv=AWD}} {{Maxstats|hpval=450|tqval=471|whval=3916|spdval=166}} ==Gallery== <gallery> File:ModelY_Rear.jpg|Rear view of the 2020 Edison Model Y. </gallery> c5953fa9d83a3d431046ff3fe75b0eb22792b940 2020 BNW X7 0 1248 1610 2022-09-01T03:51:38Z S30Z 2 Created page with " {{Carinfo |name=2020 BNW X7 |image=X7_Front.jpg |make=BNW |type=SUV |price=$73,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_X7 |rlname=BMW X7 |limited=0 |electric=0 }} The 2020 BNW X7 is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $73,900. ==Stats== The X7 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=336|tqval=366|whval=5115|spdval=128|drv=AWD}} {{Maxstats|hpval=1021|..." wikitext text/x-wiki {{Carinfo |name=2020 BNW X7 |image=X7_Front.jpg |make=BNW |type=SUV |price=$73,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_X7 |rlname=BMW X7 |limited=0 |electric=0 }} The 2020 BNW X7 is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $73,900. ==Stats== The X7 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=336|tqval=366|whval=5115|spdval=128|drv=AWD}} {{Maxstats|hpval=1021|tqval=1540|whval=4615|spdval=217}} ==Gallery== <gallery> File:X7_Rear.jpg|Rear view of the 2020 BNW X7. </gallery> d4d9499f9d5e0be85269aecd7a8cf0b3a8ada47a 2020 Range Runner Velar 0 1249 1611 2022-09-01T03:52:10Z S30Z 2 Created page with " {{Carinfo |name=2020 Range Runner Velar |image=Velar_Front.jpg |make=Range Runner |type=SUV |price=$75,300 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Velar |rlname=Land Rover Range Rover Velar |limited=0 |electric=0 }} The 2020 Range Runner Velar is a four door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $75,300. ==Stats== The Velar has 5 seats and a fuel capacity of 17 gallons. {{Stoc..." wikitext text/x-wiki {{Carinfo |name=2020 Range Runner Velar |image=Velar_Front.jpg |make=Range Runner |type=SUV |price=$75,300 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Velar |rlname=Land Rover Range Rover Velar |limited=0 |electric=0 }} The 2020 Range Runner Velar is a four door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $75,300. ==Stats== The Velar has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=377|tqval=316|whval=4471|spdval=137|drv=AWD}} {{Maxstats|hpval=1076|tqval=1366|whval=3971|spdval=206}} ==Gallery== <gallery> File:Velar_Rear.jpg|Rear view of the 2020 Range Runner Velar. </gallery> 963e80ce95cf341d171a566f950cf7ebf0e4f773 2020 Pohrse Cayenne Coupe 0 1250 1612 2022-09-01T03:52:38Z S30Z 2 Created page with " {{Carinfo |name=2020 Pohrse Cayenne Coupe |image=CayenneCoupe_Front.jpg |make=Pohrse |type=SUV |price=$76,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_Cayenne#Third_generation_(2017) |rlname=Porsche Cayenne (3rd gen.) |limited=0 |electric=0 }} The 2020 Pohrse Cayenne Coupe is a four door SUV produced by [[Pohrse]]. It can be purchased from the dealership for $76,500. ==Stats== The Cayenne Coupe has 5 seats and a fuel capa..." wikitext text/x-wiki {{Carinfo |name=2020 Pohrse Cayenne Coupe |image=CayenneCoupe_Front.jpg |make=Pohrse |type=SUV |price=$76,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_Cayenne#Third_generation_(2017) |rlname=Porsche Cayenne (3rd gen.) |limited=0 |electric=0 }} The 2020 Pohrse Cayenne Coupe is a four door SUV produced by [[Pohrse]]. It can be purchased from the dealership for $76,500. ==Stats== The Cayenne Coupe has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=326|tqval=326|whval=4475|spdval=147|drv=AWD}} {{Maxstats|hpval=1011|tqval=1217|whval=3975|spdval=243}} ==Gallery== <gallery> File:CayenneCoupe_Rear.jpg|Rear view of the 2020 Pohrse Cayenne Coupe. </gallery> 0736c49886fbc66d2fef5b100f82237fbb28cb62 2020 Saaburu Forester 0 1251 1613 2022-09-01T03:53:05Z S30Z 2 Created page with " {{Carinfo |name=2020 Saaburu Forester |image=Forester_Front.jpg |make=Saaburu |type=SUV |price=$27,395 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Subaru_Forester#Fifth_generation_(SK;_2018) |rlname=Subaru Forester (5th gen.) |limited=0 |electric=0 }} The 2020 Saaburu Forester is a four door SUV produced by [[Saaburu]]. It can be purchased from the dealership for $27,395. ==Stats== The Forester has 5 seats and a fuel capacity of 17..." wikitext text/x-wiki {{Carinfo |name=2020 Saaburu Forester |image=Forester_Front.jpg |make=Saaburu |type=SUV |price=$27,395 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Subaru_Forester#Fifth_generation_(SK;_2018) |rlname=Subaru Forester (5th gen.) |limited=0 |electric=0 }} The 2020 Saaburu Forester is a four door SUV produced by [[Saaburu]]. It can be purchased from the dealership for $27,395. ==Stats== The Forester has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=181|tqval=188|whval=3531|spdval=110|drv=AWD}} {{Maxstats|hpval=787|tqval=850|whval=3031|spdval=204}} ==Gallery== <gallery> File:Forester_Rear.jpg|Rear view of the 2020 Saaburu Forester. </gallery> 9e482fbec81e97ca9e26621b25b9f7bf8a04dc65 MediaWiki:Common.css 8 2 1616 33 2022-09-01T07:17:05Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MontserratRegular'; src: url('https://static.miraheze.org/strigidwiki/8/83/Montserrat-Regular.ttf'); } @font-face { font-family: 'MontserratBlack'; src: url('https://static.miraheze.org/strigidwiki/a/ab/Montserrat-Black.ttf'); } *:not(.infobox):not(.infotable){font-family:MontserratRegular;} 4a58878da50c6d0b04d635157ae4682ee3404a4c 1618 1616 2022-09-01T07:22:22Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MontserratBlack'; src: url('https://static.miraheze.org/strigidwiki/a/ab/Montserrat-Black.ttf'); } *:not(.infobox):not(.infotable){font-family:MetropolisRegular;} 7a699a2e04fac11d6a2b0f7f00e5929230b23c11 1619 1618 2022-09-01T07:24:46Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MontserratBlack'; src: url('https://static.miraheze.org/strigidwiki/a/ab/Montserrat-Black.ttf'); } *:not(.infobox):not(.infotable):not(textarea):not(h1):not(pre){font-family:MetropolisRegular;} 96f4e7a2dde4d578af38efc4a07ba8b9ffa06679 1620 1619 2022-09-01T07:25:47Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MontserratBlack'; src: url('https://static.miraheze.org/strigidwiki/a/ab/Montserrat-Black.ttf'); } *:not(.infobox):not(.infotable):not(textarea):not(h1):not(header):not(pre){font-family:MetropolisRegular;} fd382997937c6f005004abce58732f6c94631804 1621 1620 2022-09-01T07:28:29Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MontserratBlack'; src: url('https://static.miraheze.org/strigidwiki/a/ab/Montserrat-Black.ttf'); } *:not(.infobox):not(.infotable):not(textarea):not(h1):not(header):not(pre):not(.mw-headline):not(.firstHeading){font-family:MetropolisRegular;} f9c0aac7fb05e224d73a7ea2f05685c8ae7f1b55 1622 1621 2022-09-01T07:29:23Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MontserratBlack'; src: url('https://static.miraheze.org/strigidwiki/a/ab/Montserrat-Black.ttf'); } *:not(.infobox):not(.infotable):not(textarea):not(h1):not(header):not(pre):not(.mw-headline):not(.firstHeading):not(h3){font-family:MetropolisRegular;} c6a550d87c583297af2e4114285f4641b8d01f5b 1624 1622 2022-09-01T07:32:29Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } h1 {font-family:MetropolisBlack;} *:not(.infobox):not(.infotable):not(textarea):not(h1):not(header):not(pre):not(.mw-headline):not(.firstHeading):not(h3){font-family:MetropolisRegular;} eb91a332e0824ae40230a7232dd6918141e24b4e 1625 1624 2022-09-01T07:33:38Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } h1 {font-family:MetropolisBlack;} body{font-family:MetropolisRegular;} a5059621167eb02ad529c50572631030524b6c9f 1626 1625 2022-09-01T07:34:43Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } h1{font-family:MetropolisBlack;} h3{font-family:MetropolisBlack;} p{font-family:MetropolisRegular;} 6caf426d48211a363963b14467f6c585d5a970c4 1627 1626 2022-09-01T07:38:02Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .firstHeading,.mw-first-heading{font-family:MetropolisBlack;} p{font-family:MetropolisRegular;} 4130dab9117305b49090296aa355079a4e6f698d 1628 1627 2022-09-01T07:39:42Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } 525f704968970a85b66b2da0a484007907f0e642 1629 1628 2022-09-01T07:43:05Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } h3 {font-family:MetropolisBlack;} 7c843579926b0d86ed6ddeb88488afc7b2a19e5c 1630 1629 2022-09-01T07:44:00Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .vector-body h3{font-family:MetropolisBlack;} ccef54f252a579d2b4e63d6fb46b24930306e4c2 1631 1630 2022-09-01T07:45:42Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1{font-family:MetropolisBlack;} 2bd62fd06c8d9f156d123b95459ce2ac172fee73 1632 1631 2022-09-01T07:46:59Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1{font-family:MetropolisBlack; text-transform: uppercase;} 264d2c675ff99e536d415f9ec8b674d084702076 1633 1632 2022-09-01T07:50:11Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; text-transform: uppercase; } f0e1dc9584065f5545a73cacf7fad52d24859833 1634 1633 2022-09-01T07:52:17Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; } .vector-body p { font-family: MetropolisRegular; } 9d5364f99a0540da5ffd472bc37cf994720ae1c3 1635 1634 2022-09-01T07:56:02Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/9/9e/Metropolis-Regular.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; } .vector-body p, table { font-family: MetropolisRegular; } th { text-transform: uppercase; } d621fcf44556f622f9d2d2c4728e79cb77c069ad 1637 1635 2022-09-01T17:46:45Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisRegular'; src: url('https://static.miraheze.org/strigidwiki/6/69/Metropolis-Medium.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; } .vector-body p, table { font-family: MetropolisRegular; } th { text-transform: uppercase; } 7cb0c9a624a327ae3b426d6d65aa5147dbcaea0a 1638 1637 2022-09-01T17:48:08Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisMedium'; src: url('https://static.miraheze.org/strigidwiki/6/69/Metropolis-Medium.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; } .vector-body p, table { font-family: MetropolisMedium; } th { text-transform: uppercase; } 16e13547563030c76df1ec9825d88d2b58e7a1c0 MediaWiki:Common.css 8 2 1640 1638 2022-09-01T17:53:24Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisMedium'; src: url('https://static.miraheze.org/strigidwiki/6/69/Metropolis-Medium.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } @font-face { font-family: 'MetropolisBold'; src: url('https://static.miraheze.org/strigidwiki/8/81/Metropolis-Bold.woff2'); } .vector-body h3 { font-family: MetropolisBold; } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; } .vector-body p, table { font-family: MetropolisMedium; } th { text-transform: uppercase; } d43122e53cfa0e256f2e4675bf3509d4454a0feb 1642 1640 2022-09-01T17:57:15Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisMedium'; src: url('https://static.miraheze.org/strigidwiki/6/69/Metropolis-Medium.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } @font-face { font-family: 'MetropolisBold'; src: url('https://static.miraheze.org/strigidwiki/8/81/Metropolis-Bold.woff2'); } @font-face { font-family: 'MetropolisSemiBold'; src: url('https://static.miraheze.org/strigidwiki/c/cf/Metropolis-SemiBold.woff2'); } .vector-body h2 { font-family: MetropolisBold; } .vector-body h3 { font-family: MetropolisSemiBold; } .mw-body h1, .mw-body-content h1 { font-family: MetropolisBlack; } .vector-body p, table { font-family: MetropolisMedium; } th { text-transform: uppercase; } fd4c6fb5748ef330a09303329b7e548e3b07da63 1643 1642 2022-09-01T18:04:50Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'MetropolisMedium'; src: url('https://static.miraheze.org/strigidwiki/6/69/Metropolis-Medium.woff2'); } @font-face { font-family: 'MetropolisBlack'; src: url('https://static.miraheze.org/strigidwiki/1/15/Metropolis-Black.woff2'); } @font-face { font-family: 'MetropolisBold'; src: url('https://static.miraheze.org/strigidwiki/8/81/Metropolis-Bold.woff2'); } @font-face { font-family: 'MetropolisSemiBold'; src: url('https://static.miraheze.org/strigidwiki/c/cf/Metropolis-SemiBold.woff2'); } .vector-body h2 { font-family: MetropolisBold; } .vector-body h3 { font-family: MetropolisSemiBold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary div { font-family: MetropolisBlack; } .vector-body p, table { font-family: MetropolisMedium; } th { text-transform: uppercase; } d0898ee805f76d16c4c47766875a1f18b1e00d16 1648 1643 2022-09-01T18:25:08Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3 { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary div { font-family: GothamBlack; } .vector-body p, table { font-family: GothamBook; } th { text-transform: uppercase; } 5da202935b57ffe18774f16c98637dcfa54921b9 1649 1648 2022-09-01T18:39:38Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3 { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary div { font-family: GothamBlack; } .vector-body p, table { font-family: GothamBook; font-weight: 500; } th { text-transform: uppercase; } d61fb97a5c69eb11efb796dddc91636371759027 1650 1649 2022-09-01T21:18:11Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3 { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary div { font-family: GothamBlack; } .vector-body p, table { font-family: GothamBook; font-size: 15px; } th { text-transform: uppercase; } e6acef3f1bca6cb219ae8486e730004eb640ca55 1651 1650 2022-09-01T21:54:34Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3 { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body { font-family: GothamBook; } th { text-transform: uppercase; } d5e07fbff4e7243d67ae91566484bec6a7eab1bc 1652 1651 2022-09-01T21:56:59Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infotable th { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body { font-family: GothamBook; } th { text-transform: uppercase; } a830a57684eaf9475a81f9362304b39a1a5039d7 1653 1652 2022-09-01T22:14:45Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infotable th:first-of-type { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body { font-family: GothamBook; } th { text-transform: uppercase; } f8ae9d40004c25a0047cc93afd49a8b0e07a1529 1655 1653 2022-09-01T22:26:11Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infoname th { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body { font-family: GothamBook; } th { text-transform: uppercase; } 65a1a4f8bbc8c8011d15b2cc29522778b8829552 1656 1655 2022-09-01T22:27:47Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infoname { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body { font-family: GothamBook; } th { text-transform: uppercase; } e67bda802e9acfbdbf01c03afc4d23ced455606d 1657 1656 2022-09-01T22:38:09Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infoname { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body, .mw-editsection, .mw-editsection-like { font-family: GothamBook; } th { text-transform: uppercase; } 49c7d8d367ec2cfe9ac66f71632df703658f2c3b 1658 1657 2022-09-01T22:39:26Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infoname { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body p, table { font-size: 15px; } body, .mw-editsection, .mw-editsection-like { font-family: GothamBook; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: GothamBook; } 499f6f0033bce240a27119ebf876866822222db1 1667 1658 2022-09-01T23:17:26Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infoname { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body, table { font-size: 15px; } body, .mw-editsection, .mw-editsection-like { font-family: GothamBook; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: GothamBook; } 2261fdad1db94006643305fdbe449cfbdbfd7410 1670 1667 2022-09-02T05:03:14Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'GothamBook'; src: url('https://static.miraheze.org/strigidwiki/f/f1/Gotham-book-webfont.woff2'); } @font-face { font-family: 'GothamBlack'; src: url('https://static.miraheze.org/strigidwiki/6/6f/Gotham-black-webfont.woff2'); } @font-face { font-family: 'GothamBold'; src: url('https://static.miraheze.org/strigidwiki/f/f5/Gotham-bold-webfont.woff2'); } @font-face { font-family: 'GothamMedium'; src: url('https://static.miraheze.org/strigidwiki/1/1d/Gotham-medium-webfont.woff2'); } .vector-body h2 { font-family: GothamBold; } .vector-body h3, .infoname { font-family: GothamMedium; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: GothamBlack; } .vector-body, table { font-size: calc(1em * 0.95); } body, .mw-editsection, .mw-editsection-like { font-family: GothamBook; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: GothamBook; } 0b7b8a4c3afc3544c5be3cbe3932c8fe406e4c45 Template:Carinfo 10 25 1654 280 2022-09-01T22:25:26Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 1e93680562d315cfee18b1774c0ea1ea0759ee81 Template:Jobinfo10 10 398 1659 611 2022-09-01T22:40:22Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |- |{{{rank6}}} |{{{rank6pay}}} |- |{{{rank7}}} |{{{rank7pay}}} |- |{{{rank8}}} |{{{rank8pay}}} |- |{{{rank9}}} |{{{rank9pay}}} |- |{{{rank10}}} |{{{rank10pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true }, "rank5": { "label": "Position 5 Name", "type": "string", "required": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "required": true }, "rank6": { "label": "Position 6 Name", "type": "string", "required": true }, "rank6pay": { "label": "Position 6 Pay", "type": "string", "required": true }, "rank7": { "label": "Position 7 Name", "type": "string", "required": true }, "rank7pay": { "label": "Position 7 Pay", "type": "string", "required": true }, "rank8": { "label": "Position 8 Name", "type": "string", "required": true }, "rank8pay": { "label": "Position 8 Pay", "type": "string", "required": true }, "rank9": { "label": "Position 9 Name", "type": "string", "required": true }, "rank9pay": { "label": "Position 9 Pay", "type": "string", "required": true }, "rank10": { "label": "Position 10 Name", "type": "string", "required": true }, "rank10pay": { "label": "Position 10 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 10 positions (Fintech)" } </templatedata> </noinclude> 74fe804a08d968591141d5152d1c781b84d7ed34 Template:Jobinfo4 10 399 1660 610 2022-09-01T22:40:25Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 4 positions (Rift)" } </templatedata> </noinclude> cc02165150184fbc61fd8d082622297275f58624 Template:Jobinfo5 10 396 1661 609 2022-09-01T22:40:25Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true }, "rank5": { "label": "Position 5 Name", "type": "string", "required": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "required": true } }, "description": "Job page template" } </templatedata> </noinclude> dd6e26e28565df5e9b9a303647551b35bfdde5d8 Template:Jobinfo3 10 400 1662 612 2022-09-01T22:40:29Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(In-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 3 positions (Community Service)" } </templatedata> </noinclude> 55d18aa3face832e36b402f6802b774e4c23965d Police 0 297 1663 1595 2022-09-01T22:43:46Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} 3cdf666fada3cce9dac80b2e17401da386190af2 File:Bruh.jpg 6 1263 1664 2022-09-01T23:13:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Easter Eggs 0 1233 1665 1593 2022-09-01T23:14:13Z S30Z 2 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == Bugged Houses == Around the Bonita Cove cul-de-sac near Fintech, there are a total of 6 bugged houses. These houses are facing away from the road and have missing or misplaced doors and window textures. <gallery> File:Bughouse1.jpg File:Bughouse2.jpg File:Bughouse3.jpg File:Bughouse4.jpg File:Bughouse5.jpg File:Bughouse6.jpg </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> ae86a7194d676b32b917ded592e3a3b7a97d02e0 Rift Driver 0 299 1666 562 2022-09-01T23:16:26Z S30Z 2 wikitext text/x-wiki {{Jobinfo4 |desc= The Rift Driver job requires picking up and taking NPCs to different locations around Southwest Florida in order to make money and level up. Rift drivers have the same spawn point as [[Unemployed]] players. If the player exits their vehicle while on the way to pick up a passenger or while transporting a passenger, they will fail the delivery. All Rift drivers have Rift stickers placed on their car, usually on the back window. The wages shown below serve as a base. The amount of money you make depends not only on your rank, but also the amount of time taken to deliver passengers. |resp= *Give AI and real players rides around the city using your own vehicle |rank1=Partner |rank1pay=$250 |rank2=Gold Driver |rank2pay=$325 |rank3=Platinum Drier |rank3pay=$625 |rank4=Diamond Driver |rank4pay=$1025 }} 8c3d6de6d17a2383a59b4ff18181525cf3c21c69 1668 1666 2022-09-01T23:17:42Z S30Z 2 wikitext text/x-wiki {{Jobinfo4 |desc= The Rift Driver job requires picking up and taking NPCs to different locations around Southwest Florida in order to make money and level up. Rift drivers have the same spawn point as [[Unemployed]] players. If the player exits their vehicle while on the way to pick up a passenger or while transporting a passenger, they will fail the delivery. All Rift drivers have Rift stickers placed on their car, usually on the back window. The wages shown below serve as a base. The amount of money you make depends not only on your rank, but also the amount of time taken to deliver passengers. |resp= *Give AI and real players rides around the city using your own vehicle |rank1=Partner |rank1pay=$250 |rank2=Gold Driver |rank2pay=$325 |rank3=Platinum Driver |rank3pay=$625 |rank4=Diamond Driver |rank4pay=$1025 }} 703bc0707e89eb22d5b20bb6818779d1324201b5 1669 1668 2022-09-01T23:27:41Z S30Z 2 wikitext text/x-wiki {{Jobinfo4 |desc= The Rift Driver job requires picking up and taking NPCs to different locations around Southwest Florida in order to make money and level up. Rift drivers have the same spawn point as [[Unemployed]] players. If the player exits their vehicle while on the way to pick up a passenger or while transporting a passenger, they will fail the delivery. All Rift drivers have Rift stickers placed on their car, usually on the back window. The wages shown below serve as a base. The amount of money you make depends not only on your rank, but also the amount of time taken to deliver passengers. |resp= *Give AI and real players rides around the city using your own vehicle |rank1=Partner |rank1pay=$250 |rank2=Gold Driver |rank2pay=$375 |rank3=Platinum Driver |rank3pay=$625 |rank4=Diamond Driver |rank4pay=$1025 }} f9732b5355ad467913b25bece9f8d9c0a8d8e6e3 File:194Runner Front.jpg 6 1264 1671 2022-09-02T05:14:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:194Runner Rear.jpg 6 1265 1672 2022-09-02T05:15:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Escalade Front.jpg 6 1266 1673 2022-09-02T05:16:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Escalade Rear.jpg 6 1267 1674 2022-09-02T05:16:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SQ7 Front.jpg 6 1268 1675 2022-09-02T05:17:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SQ7 Rear.jpg 6 1269 1676 2022-09-02T05:18:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cullinan Front.jpg 6 1270 1677 2022-09-02T05:19:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cullinan Rear.jpg 6 1271 1678 2022-09-02T05:19:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Urus Front.jpg 6 1272 1679 2022-09-02T05:21:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Urus Rear.jpg 6 1273 1680 2022-09-02T05:22:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stelvio Front.jpg 6 1274 1681 2022-09-02T05:23:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stelvio Rear.jpg 6 1275 1682 2022-09-02T05:23:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bentayga Front.jpg 6 1276 1683 2022-09-02T05:24:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bentayga Rear.jpg 6 1277 1684 2022-09-02T05:25:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Explorer Front.jpg 6 1278 1685 2022-09-02T05:25:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Explorer Rear.jpg 6 1279 1686 2022-09-02T05:28:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Wrangler4D Front.jpg 6 1280 1687 2022-09-02T05:29:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Wrangler4D Rear.jpg 6 1281 1688 2022-09-02T05:30:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Toyoto 4Runner TRD-Pro 0 1282 1689 2022-09-02T05:31:00Z S30Z 2 Created page with " {{Carinfo |name=2019 Toyoto 4Runner TRD-Pro |image=194Runner_Front.jpg |make=Toyoto |type=SUV |price=$50,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_4Runner#Fifth_generation_(N280;_2009) |rlname=Toyota 4Runner (5th gen.) |limited=0 |electric=0 }} The 2019 Toyoto 4Runner TRD-Pro is a four door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $50,990. ==Stats== The 4Runner TRD-Pro has 5 seats and a fu..." wikitext text/x-wiki {{Carinfo |name=2019 Toyoto 4Runner TRD-Pro |image=194Runner_Front.jpg |make=Toyoto |type=SUV |price=$50,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_4Runner#Fifth_generation_(N280;_2009) |rlname=Toyota 4Runner (5th gen.) |limited=0 |electric=0 }} The 2019 Toyoto 4Runner TRD-Pro is a four door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $50,990. ==Stats== The 4Runner TRD-Pro has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=270|tqval=279|whval=4750|spdval=116|drv=AWD}} {{Maxstats|hpval=920|tqval=901|whval=4250|spdval=202}} ==Gallery== <gallery> File:194Runner_Rear.jpg|Rear view of the 2019 Toyoto 4Runner TRD-Pro. </gallery> e52b23891de5a5de85e3e46efaf2e2a8d74142fb 2021 Cadillic Escalade 0 1283 1690 2022-09-02T05:31:34Z S30Z 2 Created page with " {{Carinfo |name=2021 Cadillic Escalade |image=Escalade_Front.jpg |make=Cadillic |type=SUV |price=$76,195 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_Escalade#Fifth_generation_(2021) |rlname=Cadillac Escalade (5th gen.) |limited=0 |electric=0 }} The 2021 Cadillic Escalade is a four door SUV produced by [[Cadillic]]. It can be purchased from the dealership for $76,195. ==Stats== The Escalade has 7 seats and a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=2021 Cadillic Escalade |image=Escalade_Front.jpg |make=Cadillic |type=SUV |price=$76,195 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_Escalade#Fifth_generation_(2021) |rlname=Cadillac Escalade (5th gen.) |limited=0 |electric=0 }} The 2021 Cadillic Escalade is a four door SUV produced by [[Cadillic]]. It can be purchased from the dealership for $76,195. ==Stats== The Escalade has 7 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=420|tqval=460|whval=5578|spdval=116|drv=RWD}} {{Maxstats|hpval=1111|tqval=1440|whval=5078|spdval=179}} ==Gallery== <gallery> File:Escalade_Rear.jpg|Rear view of the 2021 Cadillic Escalade. </gallery> d273bc0db9eafadf166abb1e32c7a646dd44a42b 2018 Owdi SQ7 0 1284 1691 2022-09-02T05:31:49Z S30Z 2 Created page with " {{Carinfo |name=2018 Owdi SQ7 |image=SQ7_Front.jpg |make=Owdi |type=SUV |price=$103,319 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_Q7#Second_generation_(Typ_4M;_2015) |rlname=Audi SQ7 (2nd gen.) |limited=0 |electric=0 }} The 2018 Owdi SQ7 is a four door SUV produced by [[Owdi]]. It can be purchased from the dealership for $103,319. ==Stats== The SQ7 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=435|tqval=6..." wikitext text/x-wiki {{Carinfo |name=2018 Owdi SQ7 |image=SQ7_Front.jpg |make=Owdi |type=SUV |price=$103,319 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_Q7#Second_generation_(Typ_4M;_2015) |rlname=Audi SQ7 (2nd gen.) |limited=0 |electric=0 }} The 2018 Owdi SQ7 is a four door SUV produced by [[Owdi]]. It can be purchased from the dealership for $103,319. ==Stats== The SQ7 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=435|tqval=664|whval=3531|spdval=144|drv=AWD}} {{Maxstats|hpval=1073|tqval=1186|whval=3031|spdval=178}} ==Gallery== <gallery> File:SQ7_Rear.jpg|Rear view of the 2018 Owdi SQ7. </gallery> 9e0063dba9bd0065b93b733410537a4ce8b6ae15 2018 Rolls Rayce Cullinan 0 1285 1692 2022-09-02T05:32:08Z S30Z 2 Created page with " {{Carinfo |name=2018 Rolls Rayce Cullinan |image=Cullinan_Front.jpg |make=Rolls Rayce |type=SUV |price=$330,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Cullinan |rlname=Rolls-Royce Cullinan |limited=0 |electric=0 }} The 2018 Rolls Rayce Cullinan is a four door SUV produced by [[Rolls Rayce]]. It can be purchased from the dealership for $330,000. ==Stats== The Cullinan has 5 seats and a fuel capacity of 26 gallons. {..." wikitext text/x-wiki {{Carinfo |name=2018 Rolls Rayce Cullinan |image=Cullinan_Front.jpg |make=Rolls Rayce |type=SUV |price=$330,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Cullinan |rlname=Rolls-Royce Cullinan |limited=0 |electric=0 }} The 2018 Rolls Rayce Cullinan is a four door SUV produced by [[Rolls Rayce]]. It can be purchased from the dealership for $330,000. ==Stats== The Cullinan has 5 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=563|tqval=627|whval=6069|spdval=147|drv=AWD}} {{Maxstats|hpval=1193|tqval=1403|whval=5569|spdval=198}} ==Gallery== <gallery> File:Cullinan_Rear.jpg|Rear view of the 2018 Rolls Rayce Cullinan. </gallery> f02f379ef1b64e082671c6b003f3c6a5f43ab050 2020 Lamburghina Urus 0 1286 1693 2022-09-02T05:32:30Z S30Z 2 Created page with " {{Carinfo |name=2020 Lamburghina Urus |image=Urus_Front.jpg |make=Lamburghina |type=SUV |price=$218,009 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Urus |rlname=Lamborghini Urus |limited=0 |electric=0 }} The 2020 Lamburghina Urus is a four door SUV produced by [[Lamburghina]]. It can be purchased from the dealership for $218,009. ==Stats== The Urus has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=641|tq..." wikitext text/x-wiki {{Carinfo |name=2020 Lamburghina Urus |image=Urus_Front.jpg |make=Lamburghina |type=SUV |price=$218,009 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lamborghini_Urus |rlname=Lamborghini Urus |limited=0 |electric=0 }} The 2020 Lamburghina Urus is a four door SUV produced by [[Lamburghina]]. It can be purchased from the dealership for $218,009. ==Stats== The Urus has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=641|tqval=568|whval=4843|spdval=182|drv=AWD}} {{Maxstats|hpval=1331|tqval=1571|whval=4343|spdval=210}} ==Gallery== <gallery> File:Urus_Rear.jpg|Rear view of the 2020 Lamburghina Urus. </gallery> f06071411d41e7ad7e3a31b5275c4da688d05da6 2020 Alpha Stelvio Quadrifolgio 0 1287 1694 2022-09-02T05:32:49Z S30Z 2 Created page with " {{Carinfo |name=2020 Alpha Stelvio Quadrifolgio |image=Stelvio_Front.jpg |make=Alpha |type=SUV |price=$88,745 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_Stelvio |rlname=Alfa Romeo Stelvio |limited=0 |electric=0 }} The 2020 Alpha Stelvio Quadrifolgio is a four door SUV produced by [[Alpha]]. It can be purchased from the dealership for $88,745. ==Stats== The Stelvio Quadrifolgio has 5 seats and a fuel capacity of 17 gallon..." wikitext text/x-wiki {{Carinfo |name=2020 Alpha Stelvio Quadrifolgio |image=Stelvio_Front.jpg |make=Alpha |type=SUV |price=$88,745 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Alfa_Romeo_Stelvio |rlname=Alfa Romeo Stelvio |limited=0 |electric=0 }} The 2020 Alpha Stelvio Quadrifolgio is a four door SUV produced by [[Alpha]]. It can be purchased from the dealership for $88,745. ==Stats== The Stelvio Quadrifolgio has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=505|tqval=443|whval=4360|spdval=171|drv=AWD}} {{Maxstats|hpval=1167|tqval=1507|whval=3860|spdval=219}} ==Gallery== <gallery> File:Stelvio_Rear.jpg|Rear view of the 2020 Alpha Stelvio Quadrifolgio. </gallery> 082f5e19ed20d2e24608db0bb84f1ea5422f1018 2019 Banthey Bentayga 0 1288 1695 2022-09-02T05:33:05Z S30Z 2 Created page with " {{Carinfo |name=2019 Banthey Bentayga |image=Bentayga_Front.jpg |make=Banthey |type=SUV |price=$158,996 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bentley_Bentayga |rlname=Bentley Bentayga |limited=0 |electric=0 }} The 2019 Banthey Bentayga is a four door SUV produced by [[Banthey]]. It can be purchased from the dealership for $158,996. ==Stats== The Bentayga has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=542|tq..." wikitext text/x-wiki {{Carinfo |name=2019 Banthey Bentayga |image=Bentayga_Front.jpg |make=Banthey |type=SUV |price=$158,996 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Bentley_Bentayga |rlname=Bentley Bentayga |limited=0 |electric=0 }} The 2019 Banthey Bentayga is a four door SUV produced by [[Banthey]]. It can be purchased from the dealership for $158,996. ==Stats== The Bentayga has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=542|tqval=568|whval=5099|spdval=171|drv=AWD}} {{Maxstats|hpval=1251|tqval=1315|whval=4599|spdval=236}} ==Gallery== <gallery> File:Bentayga_Rear.jpg|Rear view of the 2019 Banthey Bentayga. </gallery> ecd43f5db2f8b681e65122016630c497e354c42c 2020 Fard Explorer 0 1289 1696 2022-09-02T05:33:28Z S30Z 2 Created page with " {{Carinfo |name=2020 Fard Explorer |image=Explorer_Front.jpg |make=Fard |type=SUV |price=$32,765 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Sixth_generation_(U625;_2020) |rlname=Ford Explorer (6th gen.) |limited=0 |electric=0 }} The 2020 Fard Explorer is a four door SUV produced by [[Fard]]. It can be purchased from the dealership for $32,765. ==Stats== The Explorer has 7 seats and a fuel capacity of 19 gallons. {{St..." wikitext text/x-wiki {{Carinfo |name=2020 Fard Explorer |image=Explorer_Front.jpg |make=Fard |type=SUV |price=$32,765 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Sixth_generation_(U625;_2020) |rlname=Ford Explorer (6th gen.) |limited=0 |electric=0 }} The 2020 Fard Explorer is a four door SUV produced by [[Fard]]. It can be purchased from the dealership for $32,765. ==Stats== The Explorer has 7 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=119|drv=AWD}} {{Maxstats|hpval=1075|tqval=2751|whval=4227|spdval=167}} ==Gallery== <gallery> File:Explorer_Rear.jpg|Rear view of the 2020 Fard Explorer. </gallery> 9e6551dd3a6aaffbffbaa9e223e7b2c36de3a089 2020 Jeff Wrangler 4-Door 0 1290 1697 2022-09-02T05:33:52Z S30Z 2 Created page with " {{Carinfo |name=2020 Jeff Wrangler 4-Door |image=Wrangler4D_Front.jpg |make=Jeff |type=SUV |price=$31,794 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Wrangler_(JL) |rlname=Jeep Wrangler (JL) |limited=0 |electric=0 }} The 2020 Jeff Wrangler 4-Door is an SUV produced by [[Jeff]]. It can be purchased from the dealership for $31,794. ==Stats== The Wrangler 4-Door has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=28..." wikitext text/x-wiki {{Carinfo |name=2020 Jeff Wrangler 4-Door |image=Wrangler4D_Front.jpg |make=Jeff |type=SUV |price=$31,794 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Wrangler_(JL) |rlname=Jeep Wrangler (JL) |limited=0 |electric=0 }} The 2020 Jeff Wrangler 4-Door is an SUV produced by [[Jeff]]. It can be purchased from the dealership for $31,794. ==Stats== The Wrangler 4-Door has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=284|tqval=265|whval=4167|spdval=112|drv=AWD}} {{Maxstats|hpval=940|tqval=1118|whval=3667|spdval=188}} ==Gallery== <gallery> File:Wrangler4D_Rear.jpg|Rear view of the 2020 Jeff Wrangler 4-Door. </gallery> f42538df6180e3e3b17b355327682cf42f99bfe4 File:Wrangler Front.jpg 6 1291 1698 2022-09-02T07:50:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Wrangler Rear.jpg 6 1292 1699 2022-09-02T07:51:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ioniq5 Front.jpg 6 1293 1700 2022-09-02T07:51:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ioniq5 Rear.jpg 6 1294 1701 2022-09-02T07:51:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C40 Front.jpg 6 1295 1702 2022-09-02T07:52:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C40 Rear.jpg 6 1296 1703 2022-09-02T07:52:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evoque Front.jpg 6 1297 1704 2022-09-02T07:52:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Evoque Rear.jpg 6 1298 1705 2022-09-02T07:52:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DBX Front.jpg 6 1299 1706 2022-09-02T07:52:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DBX Rear.jpg 6 1300 1707 2022-09-02T07:53:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Jeff Wrangler 0 1301 1708 2022-09-02T07:53:38Z S30Z 2 Created page with " {{Carinfo |name=2020 Jeff Wrangler |image=Wrangler_Front.jpg |make=Jeff |type=SUV |price=$28,295 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Wrangler_(JL) |rlname=Jeep Wrangler (JL) |limited=0 |electric=0 }} The 2020 Jeff Wrangler is a 2 door SUV produced by [[Jeff]]. It can be purchased from the dealership for $28,295. ==Stats== The Wrangler has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=284|tqval=265|whval..." wikitext text/x-wiki {{Carinfo |name=2020 Jeff Wrangler |image=Wrangler_Front.jpg |make=Jeff |type=SUV |price=$28,295 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Wrangler_(JL) |rlname=Jeep Wrangler (JL) |limited=0 |electric=0 }} The 2020 Jeff Wrangler is a 2 door SUV produced by [[Jeff]]. It can be purchased from the dealership for $28,295. ==Stats== The Wrangler has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=284|tqval=265|whval=3970|spdval=115|drv=AWD}} {{Maxstats|hpval=940|tqval=1118|whval=3470|spdval=189}} ==Gallery== <gallery> File:Wrangler_Rear.jpg|Rear view of the 2020 Jeff Wrangler. </gallery> 0d792fff112971fe331ffabafdb88438e480129a 2022 Hayunai Ioniq 5 0 1302 1709 2022-09-02T07:54:15Z S30Z 2 Created page with " {{Carinfo |name=2022 Hayunai Ioniq 5 |image=Ioniq5_Front.jpg |make=Hayunai |type=SUV |price=$33,245 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Ioniq_5 |rlname=Hyundai Ioniq 5 |limited=0 |electric=0 }} The 2022 Hayunai Ioniq 5 is a 4 door SUV produced by [[Hayunai]]. It can be purchased from the dealership for $33,245. ==Stats== The Ioniq 5 has 7 seats {{Stockstats|hpval=320|tqval=446|whval=4542|spdval=143|drv=AWD}} {{Maxst..." wikitext text/x-wiki {{Carinfo |name=2022 Hayunai Ioniq 5 |image=Ioniq5_Front.jpg |make=Hayunai |type=SUV |price=$33,245 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Ioniq_5 |rlname=Hyundai Ioniq 5 |limited=0 |electric=0 }} The 2022 Hayunai Ioniq 5 is a 4 door SUV produced by [[Hayunai]]. It can be purchased from the dealership for $33,245. ==Stats== The Ioniq 5 has 7 seats {{Stockstats|hpval=320|tqval=446|whval=4542|spdval=143|drv=AWD}} {{Maxstats|hpval=320|tqval=446|whval=4042|spdval=144}} ==Gallery== <gallery> File:Ioniq5_Rear.jpg|Rear view of the 2022 Hayunai Ioniq 5. </gallery> 6f9d4a6a0cbd29a7983a33891767b39f631bc8b9 1710 1709 2022-09-02T07:54:56Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Hayunai Ioniq 5 |image=Ioniq5_Front.jpg |make=Hayunai |type=SUV |price=$33,245 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hyundai_Ioniq_5 |rlname=Hyundai Ioniq 5 |limited=0 |electric=1 }} The 2022 Hayunai Ioniq 5 is a 4 door SUV produced by [[Hayunai]]. It can be purchased from the dealership for $33,245. ==Stats== The Ioniq 5 has 7 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=320|tqval=446|whval=4542|spdval=143|drv=AWD}} {{Maxstats|hpval=320|tqval=446|whval=4042|spdval=144}} ==Gallery== <gallery> File:Ioniq5_Rear.jpg|Rear view of the 2022 Hayunai Ioniq 5. </gallery> 2bb3c39c5fd46356bd0435e9a9837475cfa0336b 2022 Vovol C40 Recharge 0 1303 1711 2022-09-02T07:55:31Z S30Z 2 Created page with " {{Carinfo |name=2022 Vovol C40 Recharge |image=C40_Front.jpg |make=Vovol |type=SUV |price=$59,845 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_C40 |rlname=Volvo C40 |limited=0 |electric=1 }} The 2022 Vovol C40 Recharge is a 4 door SUV produced by [[Vovol]]. It can be purchased from the dealership for $59,845. ==Stats== The C40 Recharge has 7 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, an..." wikitext text/x-wiki {{Carinfo |name=2022 Vovol C40 Recharge |image=C40_Front.jpg |make=Vovol |type=SUV |price=$59,845 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_C40 |rlname=Volvo C40 |limited=0 |electric=1 }} The 2022 Vovol C40 Recharge is a 4 door SUV produced by [[Vovol]]. It can be purchased from the dealership for $59,845. ==Stats== The C40 Recharge has 7 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=402|tqval=486|whval=4854|spdval=135|drv=AWD}} {{Maxstats|hpval=320|tqval=446|whval=4354|spdval=135}} ==Gallery== <gallery> File:C40_Rear.jpg|Rear view of the 2022 Vovol C40 Recharge. </gallery> 42a6d349a38ae21668d7e51bcd71d99842f47dd6 2020 Range Runner Evoque 0 1304 1712 2022-09-02T07:55:56Z S30Z 2 Created page with " {{Carinfo |name=2020 Range Runner Evoque |image=Evoque_Front.jpg |make=Range Runner |type=SUV |price=$59,985 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Evoque#Second_generation_(L551;_2019) |rlname=Land Rover Range Rover Evoque (2nd gen.) |limited=0 |electric=0 }} The 2020 Range Runner Evoque is a 4 door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $59,985. ==Stats== The Evoque has 5 sea..." wikitext text/x-wiki {{Carinfo |name=2020 Range Runner Evoque |image=Evoque_Front.jpg |make=Range Runner |type=SUV |price=$59,985 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Evoque#Second_generation_(L551;_2019) |rlname=Land Rover Range Rover Evoque (2nd gen.) |limited=0 |electric=0 }} The 2020 Range Runner Evoque is a 4 door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $59,985. ==Stats== The Evoque has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=246|tqval=269|whval=4008|spdval=140|drv=AWD}} {{Maxstats|hpval=896|tqval=1491|whval=3508|spdval=234}} ==Gallery== <gallery> File:Evoque_Rear.jpg|Rear view of the 2020 Range Runner Evoque. </gallery> 8e4e9164832ac8ee2efad64ea7059f6e72d9fa40 2021 Atone-Mira DBX 0 1305 1713 2022-09-02T07:56:24Z S30Z 2 Created page with " {{Carinfo |name=2021 Atone-Mira DBX |image=DBX_Front.jpg |make=Atone-Mira |type=SUV |price=$195,586 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_DBX |rlname=Aston Martin DBX |limited=0 |electric=0 }} The 2021 Atone-Mira DBX is a 4 door SUV produced by [[Atone-Mira]]. It can be purchased from the dealership for $195,586. ==Stats== The DBX has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=542|tqval=516|whv..." wikitext text/x-wiki {{Carinfo |name=2021 Atone-Mira DBX |image=DBX_Front.jpg |make=Atone-Mira |type=SUV |price=$195,586 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Aston_Martin_DBX |rlname=Aston Martin DBX |limited=0 |electric=0 }} The 2021 Atone-Mira DBX is a 4 door SUV produced by [[Atone-Mira]]. It can be purchased from the dealership for $195,586. ==Stats== The DBX has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=542|tqval=516|whval=4949|spdval=184|drv=AWD}} {{Maxstats|hpval=1251|tqval=1394|whval=4449|spdval=252}} ==Gallery== <gallery> File:DBX_Rear.jpg|Rear view of the 2021 Atone-Mira DBX. </gallery> 0fe25b6e23b99c105c3440c77d75733c82bb0c76 File:TruenoRg.woff 6 1307 1715 2022-09-02T08:21:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TruenoSBd.woff 6 1309 1717 2022-09-02T08:21:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 MediaWiki:Common.css 8 2 1718 1670 2022-09-02T08:25:28Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoBlack'; src: url('https://static.miraheze.org/strigidwiki/3/3b/TruenoBlk.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h2 { font-family: TruenoBold; } .vector-body h3, .infoname { font-family: TruenoSemibold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBlack; } .vector-body, table { font-size: calc(1em * 0.95); } body, .mw-editsection, .mw-editsection-like { font-family: TruenoRegular; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: TruenoRegular; } d0d58cc2bc3faab4172174dca490b9046fb9907e 1720 1718 2022-09-02T08:28:08Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/b/ba/TruenoLt.woff'); } @font-face { font-family: 'TruenoBlack'; src: url('https://static.miraheze.org/strigidwiki/3/3b/TruenoBlk.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h2 { font-family: TruenoBold; } .vector-body h3, .infoname { font-family: TruenoSemibold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBlack; } .vector-body, table { font-size: calc(1em * 0.95); } body, .mw-editsection, .mw-editsection-like { font-family: TruenoRegular; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: TruenoRegular; } 11fbf1ae7852493f3d6c4753665954b3d79b81ec 1721 1720 2022-09-02T08:28:51Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoLight'; src: url('https://static.miraheze.org/strigidwiki/b/ba/TruenoLt.woff'); } @font-face { font-family: 'TruenoBlack'; src: url('https://static.miraheze.org/strigidwiki/3/3b/TruenoBlk.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h2 { font-family: TruenoBold; } .vector-body h3, .infoname { font-family: TruenoSemibold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBlack; } .vector-body, table { font-size: calc(1em * 0.95); } body, .mw-editsection, .mw-editsection-like { font-family: TruenoLight; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: TruenoLight; } 8bfb4a30eec8682a1eaf5e2a9935273d60d722e1 1722 1721 2022-09-02T08:34:53Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoLight'; src: url('https://static.miraheze.org/strigidwiki/b/ba/TruenoLt.woff'); } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoBlack'; src: url('https://static.miraheze.org/strigidwiki/3/3b/TruenoBlk.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h2 { font-family: TruenoBold; } .vector-body h3, .infoname { font-family: TruenoSemibold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBlack; } .vector-body, table { font-size: calc(1em * 0.95); } body, .mw-editsection, .mw-editsection-like { font-family: TruenoLight; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: TruenoLight; } #mw-panel { font-family: TruenoRegular; } 5f5681f0908b6fc8ac7db077487bdc689a9b22d6 1725 1722 2022-09-02T20:21:33Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'OpenSansRegular'; src: url('https://static.miraheze.org/strigidwiki/2/25/OpenSans-Regular.ttf'); } @font-face { font-family: 'TruenoBlack'; src: url('https://static.miraheze.org/strigidwiki/3/3b/TruenoBlk.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h2 { font-family: TruenoBold; } .vector-body h3, .infoname { font-family: TruenoSemibold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBlack; } .vector-body, table { font-size: calc(1em * 0.95); } body, .mw-editsection, .mw-editsection-like { font-family: OpenSansRegular; } th { text-transform: uppercase; } .vector-body .toc h2 { font-family: OpenSansRegular; } 6851cd4eb5a9ab30480d793fd2a06739796b7d2b 1726 1725 2022-09-02T20:26:40Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoBlack'; src: url('https://static.miraheze.org/strigidwiki/3/3b/TruenoBlk.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h2 { font-family: TruenoBold; } .vector-body h3, .infoname { font-family: TruenoSemibold; } .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBlack; } .vector-body, table { font-size: calc(1em * 0.95); } th { text-transform: uppercase; } 737451aeb80315adee9eb01f879d2572395f47ec 1727 1726 2022-09-02T20:29:26Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3, .infoname { font-family: TruenoSemibold; } .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBold; } .vector-body, table { font-size: calc(1em * 0.95); } th { text-transform: uppercase; } 397dca28bb7dde541a8736a8aedf03d60f08512f 1728 1727 2022-09-02T20:34:04Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3, .infoname { font-family: TruenoSemibold; } .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBold; } th { text-transform: uppercase; font-family: TruenoSemibold; } 05aac86c6a4a41a92c49ff9f4653f33420edf0d4 1730 1728 2022-09-02T20:41:20Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .infoname { font-family: TruenoSemibold; } .vector-body h3 { font-family: TruenoRegular; } .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBold; } th { text-transform: uppercase; font-family: TruenoSemibold; } ace9e1dd9ac48a168c7b430f5fd529dcf04fb615 2013 Fard Mustang GT500 Super Snake 0 76 1723 1113 2022-09-02T19:57:41Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image=Super Snake Front.png|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0|electric=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:Super Snake Rear.png|left|thumb|Rear view of the Fard Mustang GT500 Super Snake]] [[File:Super Snake Intercooler.png|center|thumb|"Super Snake" shown on the intercooler of the Fard Mustang GT500 Super Snake]] 5553c7594ad747cc2aba26962bd28b0b2ee3f265 Template:Maxstats 10 27 1729 407 2022-09-02T20:36:50Z S30Z 2 wikitext text/x-wiki {| class="wikitable" ! colspan="2" |{{{subj|Maximum Performance}}} |- !Horsepower |{{{horsepower|{{{hpval}}} HP}}} |- !Torque |{{{torque|{{{tqval}}} LB-FT}}} |- !Weight |{{{weight|{{{whval}}} LB}}} |- !Top speed |{{{top speed|~{{{spdval}}} MPH}}} |} Note: Top speed testing is performed with stock suspension, wheel width, drivetrain, differential, and gearing settings. You will likely be able to achieve a better top speed through further tuning (if available). For some vehicles, you may need to use the Semi or Manual transmission modes to achieve the top speeds shown. <noinclude> <templatedata> { "params": { "hpval": { "label": "Horsepower", "example": "1133", "type": "number", "required": true }, "tqval": { "label": "Torque", "example": "1073", "type": "number", "required": true }, "whval": { "label": "Weight", "example": "2883", "type": "number", "required": true }, "spdval": { "label": "Approximate top speed", "example": "234", "type": "number", "required": true } }, "description": "Maximum vehicle performance box" } </templatedata> </noinclude> 21f7a6c7733ab7ad83907b2d11d1c4e207773d3e 2011 Fard Crown Victoria Police Interceptor 0 236 1731 386 2022-09-02T21:42:14Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor |image=CVPI_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPI_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor. </gallery> 05929dc03734ddd4718dbf0984c343a5a2e93703 2022 Fard Mustang GT 0 153 1732 292 2022-09-02T22:16:39Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2021 Fard Mustang GT. </gallery> d43491149b8d05812a9d1dd4746caa3dbb7ccaf4 File:CVPISheriff Front.jpg 6 1312 1733 2022-09-02T22:31:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CVPISheriff Rear.jpg 6 1313 1734 2022-09-02T22:32:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtilitySheriff Front.jpg 6 1314 1735 2022-09-02T22:32:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtilitySheriff Rear.jpg 6 1315 1736 2022-09-02T22:33:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PIUtilityUnmarkedSheriff Front.jpg 6 1316 1737 2022-09-02T22:34:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 MediaWiki:Uploadtext 8 1317 1738 2022-09-02T22:37:22Z S30Z 2 Created page with "Use the form below to upload files. To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]]. Uploads and reuploads are also logged in the [[Special:Log/upload|upload log]]. Deletions are logged in the [[Special:Log/delete|deletion log]]. To include a file in a page, use a link in one of the following forms: * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></code></strong> to use the full version of the f..." wikitext text/x-wiki Use the form below to upload files. To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]]. Uploads and reuploads are also logged in the [[Special:Log/upload|upload log]]. Deletions are logged in the [[Special:Log/delete|deletion log]]. To include a file in a page, use a link in one of the following forms: * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></code></strong> to use the full version of the file * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|200px|thumb|left|Caption]]</nowiki></code></strong> to use a 200-pixel-wide rendition in a box in the left margin with the text "Caption" below * <strong><code><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></code></strong> for directly linking to the file without displaying the file <b>When uploading images, please use .jpg unless your image requires transparency (ex: car company logos).</b> 316e3201135c41cbb905739227d5bcee04ce0000 File:PIUtilityUnmarkedSheriff Rear.jpg 6 1318 1739 2022-09-02T22:45:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PInterceptorSheriff Front.jpg 6 1319 1740 2022-09-02T22:46:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PInterceptorSheriff Rear.jpg 6 1320 1741 2022-09-02T22:46:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PInterceptorUnmarkedSheriff Front.jpg 6 1321 1742 2022-09-02T22:46:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RangerCSU Front.jpg 6 1322 1743 2022-09-02T22:46:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RangerCSU Rear.jpg 6 1323 1744 2022-09-02T22:47:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2021 Mustang GTUnmarked Front.jpg 6 1324 1745 2022-09-02T22:47:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1746 1745 2022-09-02T22:47:34Z S30Z 2 wikitext text/x-wiki pic taken by Aid 79474f01d24b29db50c147399c515041d7abcad7 File:2021 Mustang GTUnmarked Rear.jpg 6 1325 1747 2022-09-02T22:47:49Z S30Z 2 pic taken by Aid wikitext text/x-wiki == Summary == pic taken by Aid af891b12fb742c2edcf5d8ba9fd86fb85f48040c 2011 Fard Crown Victoria Police Interceptor Sheriff 0 1326 1748 2022-09-02T22:49:02Z S30Z 2 Created page with "{{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Sheriff |image=CVPISheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Sheriff is a [[sheriff]]-only police vehicle prod..." wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Sheriff |image=CVPISheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPISheriff_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Sheriff. </gallery> 2743de2b9fc0174a3a0a0c13cc3967f3837a9dd8 2021 Fard Police Interceptor Utility Sheriff 0 1327 1749 2022-09-02T22:50:07Z S30Z 2 Created page with "{{Carinfo |name=2021 Fard Police Interceptor Utility Sheriff |image=PIUtilitySheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Sheriff |image=PIUtilitySheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilitySheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Sheriff. </gallery> d95163c59a7a88cf446fd3428c7acc3e3ed7d69a 1759 1749 2022-09-02T22:56:27Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Sheriff |image=PIUtilitySheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilitySheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Sheriff. </gallery> 85fe01e2e76cd252d03c9c468a9051dca0a06a67 2021 Fard Police Interceptor Utility Unmarked Sheriff 0 1328 1750 2022-09-02T22:50:38Z S30Z 2 Created page with "{{Carinfo |name=2021 Fard Police Interceptor Utility Unmarked Sheriff |image=PIUtilityUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a compl..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Unmarked Sheriff |image=PIUtilityUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilityUnmarkedSheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Unmarked Sheriff. </gallery> 132e51f4cf5c7fcb449613700a9c1a417cc54dda 1760 1750 2022-09-02T22:56:31Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Unmarked Sheriff |image=PIUtilityUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilityUnmarkedSheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Unmarked Sheriff. </gallery> e52ff5f3cd71f481e19f8174c76d3594000f86b9 2016 Fard Police Interceptor Sedan Sheriff 0 1329 1751 2022-09-02T22:51:46Z S30Z 2 Created page with "{{Carinfo |name=2016 Fard Police Interceptor Sedan Sheriff |image=PInterceptorSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given o..." wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Sheriff |image=PInterceptorSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Sheriff. </gallery> fcd45fef9b20e18650faf16ffa8a0ecd2e0267f1 1761 1751 2022-09-02T22:56:36Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Sheriff |image=PInterceptorSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Sheriff. </gallery> 3010af36aaa071738a268475ba41e32dde020eb4 File:PInterceptorUnmarkedSheriff Rear.jpg 6 1330 1752 2022-09-02T22:52:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2016 Fard Police Interceptor Sedan Unmarked Sheriff 0 1331 1753 2022-09-02T22:52:56Z S30Z 2 Created page with "{{Carinfo |name=2016 Fard Police Interceptor Sedan Unmarked Sheriff |image=PInterceptorUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a..." wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Unmarked Sheriff |image=PInterceptorUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorUnmarkedSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Unmarked Sheriff. </gallery> 832be7b4ca2255553097b7dd34778feec9bb1c29 1762 1753 2022-09-02T22:56:43Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Unmarked Sheriff |image=PInterceptorUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorUnmarkedSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Unmarked Sheriff. </gallery> a4bab3f2a457d69b250c552a63d0e2028e6c57dc 2021 Fard Mustang GT Unmarked 0 1332 1754 2022-09-02T22:53:41Z S30Z 2 Created page with " {{Carinfo |name=2021 Fard Mustang GT Unmarked |image=2021_Mustang_GTUnmarked_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT Unmarked is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimen..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT Unmarked |image=2021_Mustang_GTUnmarked_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT Unmarked is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mustang GT Unmarked has 4 seats and a fuel capacity of 16 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} ==Gallery== <gallery> File:2021_Mustang_GTUnmarked_Rear.jpg|Rear view of the 2021 Fard Mustang GT Unmarked. </gallery> c7dd33249b486f80e5120b825adb3a927330b31a 1763 1754 2022-09-02T22:56:47Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT Unmarked |image=2021_Mustang_GTUnmarked_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT Unmarked is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mustang GT Unmarked has 4 seats and a fuel capacity of 16 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} ==Gallery== <gallery> File:2021_Mustang_GTUnmarked_Rear.jpg|Rear view of the 2021 Fard Mustang GT Unmarked. </gallery> 9c4c2c0b12e8d268d08e7d2f8365b8ffbe798d92 2019 Fard Ranger CSU 0 1333 1755 2022-09-02T22:54:25Z S30Z 2 Created page with " {{Carinfo |name=2019 Fard Ranger CSU |image=RangerCSU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSU is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it..." wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSU |image=RangerCSU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSU is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSU has 8 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSU_Rear.jpg|Rear view of the 2019 Fard Ranger CSU. </gallery> 25e42a23007ee781d8cc1f841ba697ff0a6ae335 1764 1755 2022-09-02T22:56:52Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSU |image=RangerCSU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSU is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSU has 8 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSU_Rear.jpg|Rear view of the 2019 Fard Ranger CSU. </gallery> afb2c9e7da85d278f3a3bc419af2bb6649b97c71 2011 Fard Crown Victoria Police Interceptor 0 236 1756 1731 2022-09-02T22:56:16Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor |image=CVPI_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPI_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor. </gallery> c2eabd7c99d52e53bae22f7e0b2bfebdf8dcf1cf 2021 Fard Police Interceptor Utility 0 237 1757 387 2022-09-02T22:56:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility |image=PIUtility_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility. </gallery> cf6f0a4c400b613dbe4be172aa1717e2a6dbec4e 2011 Fard Crown Victoria Police Interceptor Sheriff 0 1326 1758 1748 2022-09-02T22:56:23Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Sheriff |image=CVPISheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPISheriff_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Sheriff. </gallery> d26a228d2159711e8ba797c0867b01d15678505c Main Page 0 1 1765 1583 2022-09-02T23:00:36Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. [[Contributing|How can I contribute to the SWFL Wiki?]] ===For editors=== [[Guides]] 5b41da20a66502d70f5a99ae4c9c16c3226d62eb MediaWiki:Uploadtext 8 1317 1766 1738 2022-09-02T23:06:57Z S30Z 2 wikitext text/x-wiki Use the form below to upload files. To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]]. Uploads and reuploads are also logged in the [[Special:Log/upload|upload log]]. Deletions are logged in the [[Special:Log/delete|deletion log]]. To include a file in a page, use a link in one of the following forms: * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></code></strong> to use the full version of the file * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|200px|thumb|left|Caption]]</nowiki></code></strong> to use a 200-pixel-wide rendition in a box in the left margin with the text "Caption" below * <strong><code><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></code></strong> for directly linking to the file without displaying the file <b> When uploading images, please use .jpg unless your image requires transparency (ex: car company logos). If you need to upload a file with a format that is not currently supported, contact S30Z. </b> 0c526d4e13a916e7c0ad8d50072d8f66165a5923 1767 1766 2022-09-02T23:07:32Z S30Z 2 wikitext text/x-wiki Use the form below to upload files. To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]]. Uploads and reuploads are also logged in the [[Special:Log/upload|upload log]]. Deletions are logged in the [[Special:Log/delete|deletion log]]. To include a file in a page, use a link in one of the following forms: * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></code></strong> to use the full version of the file * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|200px|thumb|left|Caption]]</nowiki></code></strong> to use a 200-pixel-wide rendition in a box in the left margin with the text "Caption" below * <strong><code><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></code></strong> for directly linking to the file without displaying the file <b> When uploading images, please use .jpg unless your image requires transparency (ex: car company logos). If you need to upload a file with a format that is not currently permitted, contact S30Z. </b> 80fd4a576e2c71a29b4f3ee05f9e2d01763b360b File:350Nismo Rear.jpg 6 1334 1768 2022-09-02T23:42:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1789 1768 2022-09-02T23:59:46Z S30Z 2 wikitext text/x-wiki photo by Cheems ff2907dfe1ac11de2d3ebb36cfbdb8c47be39b10 File:350Nismo Front.jpg 6 1335 1769 2022-09-02T23:42:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1788 1769 2022-09-02T23:59:43Z S30Z 2 wikitext text/x-wiki photo by Cheems ff2907dfe1ac11de2d3ebb36cfbdb8c47be39b10 2009 Naan 350Z Nizmo 0 886 1770 1570 2022-09-02T23:43:06Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nismo|image=350Nismo_Front.jpg|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#NISMO_Editions|rlname=Nissan 350Z Nismo|limited=1|electric=0}} The 2009 Naan 350Z Nismo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nismo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == [[File:350Nismo Rear.jpg|thumb|left|The rear view of the 350Z Nizmo. ]] 34de90e824f8dc2f243eaeae295c475b5927f077 File:Super Snake Intercooler.jpg 6 1336 1771 2022-09-02T23:45:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1787 1771 2022-09-02T23:58:52Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be File:Super Snake Front.jpg 6 1337 1772 2022-09-02T23:46:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1785 1772 2022-09-02T23:58:34Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be File:Super Snake Rear.jpg 6 1338 1773 2022-09-02T23:46:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1786 1773 2022-09-02T23:58:39Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be 2013 Fard Mustang GT500 Super Snake 0 76 1774 1723 2022-09-02T23:46:29Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT500 Super Snake|image=Super Snake Front.jpg|make=Fard|type=Coupe|price=$69,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Shelby_Mustang#2013-2014_Shelby_GT500_Super_Snake|rlname=2013 Shelby GT500 Super Snake|limited=0|electric=0}} The 2013 Fard Mustang GT500 Super Snake is a high performance 2 door coupe produced by [[Fard]]. It is the high performance variant of the [[2013 Fard Mustang GT]], and it can be purchased from the dealership for $69,900. == Stats == The GT500 Super Snake has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=662|tqval=631|whval=3,851|spdval=200|drv=RWD}}{{Maxstats|hpval=1,343|tqval=934|whval=3,351|spdval=225}} == Gallery == [[File:Super Snake Rear.jpg|left|thumb|Rear view of the Fard Mustang GT500 Super Snake]] [[File:Super Snake Intercooler.jpg|center|thumb|"Super Snake" shown on the intercooler of the Fard Mustang GT500 Super Snake]] 60e8c3ee99c23bbdb0e58247a503b41f2f11e992 File:MC Front.jpg 6 1339 1775 2022-09-02T23:49:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1783 1775 2022-09-02T23:57:41Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be File:MC Rear.jpg 6 1340 1776 2022-09-02T23:49:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1784 1776 2022-09-02T23:57:53Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be 2012 Mazeri GranTurismo MC 0 826 1777 1140 2022-09-02T23:50:12Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2012 Mazeri GranTurismo MC|image=MC Front.jpg|make=Mazeri|type=Coupe|price=$48,500|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Maserati_GranTurismo#GranTurismo_MC_Stradale_(2011%E2%80%932015)|rlname=2012 Maserati Gran Turismo MC Stradale|limited=0|electric=0}} The 2012 Mazeri GranTurismo MC is a 2-door italian sports coupe produced by [[Mazeri]], and can be purchased from the dealership for $48,500. == Stats == The GranTurismo MC seats 2 people and has a maximum fuel capacity of 24 gallons. {{Stockstats|hpval=444|tqval=376|whval=3,902|spdval=188|drv=RWD}}{{Maxstats|hpval=1,414|tqval=1,005|whval=3,402|spdval=247}} == Gallery == [[File:MC Rear.jpg|left|thumb|Rear view of the GranTurismo MC]] 10c6c4582ef6d66095db5b85cc55d9d47eeb8b8d File:FJ Cruiser Front.jpg 6 1341 1778 2022-09-02T23:53:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1781 1778 2022-09-02T23:56:59Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be File:FJ Cruiser Rear.jpg 6 1342 1779 2022-09-02T23:54:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1782 1779 2022-09-02T23:57:03Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be 2014 Toyoto FJ Cruiser 0 1021 1780 1527 2022-09-02T23:54:33Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2014 Toyoto FJ Cruiser|image=FJ Cruiser Front.jpg|make=Toyoto|type=SUV|price=$37,999|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser|rlname=Toyota FJ Cruiser|limited=0|electric=0}} The 2014 Toyoto FJ Cruiser is a 4-door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $37,999. == Stats == The FJ Cruiser seats 5 people and has a maximum fuel capacity of 18.9 gallons {{Stockstats|hpval=259|tqval=278|whval=4,343|spdval=105|drv=AWD}}{{Maxstats|hpval=906|tqval=887|whval=3,843|spdval=179}} == Gallery == [[File:FJ Cruiser Rear.jpg|left|thumb|Rier view of the FJ Cruiser]] 389d10c861e7d3346cf11c5045d47fe42cdcd3e0 File:Sequoia Front.jpg 6 1343 1790 2022-09-03T00:03:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1791 1790 2022-09-03T00:03:24Z S30Z 2 wikitext text/x-wiki photo by HPtheamazing 779c6c371244b18412a7dfe1a1779741c4c420be File:Sequoia Rear.jpg 6 1344 1792 2022-09-03T00:05:43Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 2023 Toyoto Sequoia TRD-Pro 0 1212 1793 1559 2022-09-03T00:05:52Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2023 Toyoto Sequoia TRD-Pro|image=Sequoia Front.jpg|make=Toyoto|type=SUV|price=$67,050|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Sequoia#Third_generation_(XK80;_2022)|rlname=2023 Toyota Sequoia (3rd gen.)|limited=0|electric=0}} The 2023 Toyoto Sequoia TRD-Pro is a four door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $67,050. == Stats == The Sequoia TRD-Pro seats 7 people and has a maximum fuel capacity of 31.9 gallons {{Stockstats|hpval=437|tqval=583|whval=5,730|spdval=130|drv=AWD}}{{Maxstats|hpval=1,105|tqval=1,737|whval=5,230|spdval=197}} == Gallery == [[File:Sequoia Rear.jpg|left|thumb|Rear view of the Sequoia TRD-Pro]] e80227538945e345755428798a847ea91b72cc54 File:13ACR Front.jpg 6 1345 1794 2022-09-03T00:59:54Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:21Daytona Front.jpg 6 1346 1795 2022-09-03T01:00:41Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:77 Front.jpg 6 1347 1796 2022-09-03T01:01:09Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:93SVT Front.jpg 6 1348 1797 2022-09-03T01:03:09Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Atom Front.jpg 6 1351 1800 2022-09-03T01:06:32Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Camry TRD Back.jpg 6 1352 1801 2022-09-03T01:06:55Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Camry TRD Front.jpg 6 1353 1802 2022-09-03T01:07:10Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:CTRClub Front.jpg 6 1354 1803 2022-09-03T01:07:34Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:DBS Front.jpg 6 1355 1804 2022-09-03T01:08:18Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Delorean Front.jpg 6 1356 1805 2022-09-03T01:09:41Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Delorean Rear.jpg 6 1357 1806 2022-09-03T01:10:13Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Exorcist Front.jpg 6 1358 1807 2022-09-03T01:10:35Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:GTS Front.jpg 6 1359 1808 2022-09-03T01:11:00Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:GTS Rear.jpg 6 1360 1809 2022-09-03T01:13:34Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:NLine Front.jpg 6 1363 1812 2022-09-03T01:16:09Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Slantnose Front.jpg 6 1364 1813 2022-09-03T01:21:56Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Slantnose Popups.jpg 6 1365 1814 2022-09-03T01:23:19Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:SLSBS Front.jpg 6 1366 1815 2022-09-03T01:23:56Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:TRD Avalon Front.jpg 6 1367 1816 2022-09-03T01:25:16Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:TRD Avalon Rear.jpg 6 1368 1817 2022-09-03T01:26:24Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 File:Ztune Front.jpg 6 1369 1818 2022-09-03T01:26:48Z S30Z 2 photo by Aid wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 2020 Toyoto Camry TRD 0 803 1819 1108 2022-09-03T01:28:22Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry TRD|image=Camry TRD Front.jpg|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Camry]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in Easter 2020, and is unavailable currently to players. == Stats == The Camry has 5 seats and has a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=385|whval=3572|spdval=120|drv=FWD}}{{Maxstats|hpval=1214|tqval=1335|whval=3072|spdval=220}} == Gallery == <gallery> File:Camry TRD Back.jpg|Camry TRD Rear End </gallery> 049f6ff8dc4333637b93fc56c4fb4b1813bf2713 2020 Toyoto Avalon TRD 0 806 1820 1110 2022-09-03T01:28:35Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Avalon TRD|image=TRD Avalon Front.jpg|make=Toyoto|type=Sedan|price=Free|avail=Limited|rllink=https://en.wikipedia.org/wiki/Toyota_Avalon|rlname=Toyota Avalon TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Avalon XLE]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in New Years 2022, and is unavailable currently to players. == Stats == The Avalon has 5 seats and has a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3638|spdval=130|drv=FWD}}{{Maxstats|hpval=817|tqval=683|whval=3138|spdval=190}} == Gallery == <gallery> File:TRD Avalon Rear.jpg|TRD Avalon Rear End </gallery> 2db04486e3bd3496f6e3887da7bc4ef154059ecd 2020 Atone Mira DBS Superleggera 0 809 1821 1115 2022-09-03T01:29:15Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Atone-Mira DBS Superleggera|image=DBS Front.jpg|make=Atone-Mira|type=Super|price=Free|avail=Given out to Alpha Players|rllink=https://en.wikipedia.org/wiki/Aston_Martin_DBS_Superleggera|rlname=Aston Martin DBS Superlegerra|limited=1|electric=0}} The 2020 Atone-Mira DBS Superleggera is a Grand Tourer made by the brand [[Atone-Mira]]. This vehicle was given to Alpha players for free by the developers. This vehicle, once used as a slot by Apexical (chy_lls), is one of the rarest cars in Southwest Florida. == Stats == The DBS has 2 seats and a max fuel capacity of 20 gallons. {{Stockstats|hpval=715|tqval=655|whval=3732|spdval=210|drv=RWD}}{{Maxstats|hpval=1201|tqval=1198|whval=3232|spdval=225}} ddff2cd7460dfb1951f7e35359bc711e12c24876 File:300+ front.jpg 6 1370 1822 2022-09-03T02:00:45Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:300+ rear.jpg 6 1371 1823 2022-09-03T02:02:00Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Mcfaren speedtail front.jpg 6 1372 1824 2022-09-03T02:03:57Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Mcfaren speedtail rear.jpg 6 1373 1825 2022-09-03T02:04:35Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Revention front.jpg 6 1374 1826 2022-09-03T02:05:05Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Revention interior.jpg 6 1375 1827 2022-09-03T02:05:33Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Revention rear.jpg 6 1376 1828 2022-09-03T02:06:29Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Sto front.jpg 6 1377 1829 2022-09-03T02:07:17Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 File:Sto rear.jpg 6 1378 1830 2022-09-03T02:07:41Z S30Z 2 photo by Doggies50 wikitext text/x-wiki == Summary == photo by Doggies50 10796b022ad777584e007f926eb2cf83afccbc37 2020 McFaren Speedtail 0 305 1831 776 2022-09-03T02:09:54Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 McFaren Speedtail|image=Mcfaren speedtail front.jpg|make=McFaren|type=Hyper|price=$2,250,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/McLaren_Speedtail|rlname=Mclaren Speedtail|limited=1|electric=0}} The 2020 [[McFaren]] Speedtail is a limited high performance hyper car which was sold for $2,250,000 in game for about 2 days. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The McFaren Speedtail has 3 seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1036|tqval=848|whval=3153|spdval=250|drv=RWD}}{{Maxstats|hpval=1722|tqval=1516|whval=2653|spdval=255}} == Gallery == <gallery> File:Mcfaren speedtail rear.jpg </gallery> f337c6a5a21cc9456f9edf1d3deb0f15dea562c9 2022 Bulatti Chiron Super Sport 300+ 0 436 1832 779 2022-09-03T02:11:54Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.jpg|make=Bulatti|type=Hyper|price=$3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 [[Bulatti]] Chiron Super Sport 300+ is the successor to the 2017 Bulatti Chiron with a whopping 300+ mph top speed hence the name "300). This vehicle was a limited car sold for $3,900,000 for about 2 days. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Bulatti Chiron SS 300+ has 2 seats and a 26 gallon fuel capacity. {{Stockstats|hpval=1180|tqval=1180|whval=4361|spdval=315|drv=AWD}}{{Maxstats|hpval=2073|tqval=1296|whval=3858|spdval=315}} == Gallery == <gallery> File:300+ rear.jpg </gallery> 3fbc8fe96083b9ac92de55f736ef0b0a0bd12ded 2009 Lamburghina Reventon Roadster 0 452 1833 771 2022-09-03T02:13:19Z S30Z 2 S30Z moved page [[2009 Lamburghina Revention Roadster]] to [[2009 Lamburghina Reventon Roadster]] wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.png|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Reventon Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} <gallery> File:Revention rear.png|The rear view of the Reventon. File:Revention interior.png|Interior shot of the Reventon. </gallery> 8ba7dfdaeab50cc0c965654e5161ce489494e9bb 1835 1833 2022-09-03T02:15:00Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.jpg|make=Lamburghina|type=Super|price=$1,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Reventon Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster is a super car built by [[Lamburghina]]. This roadster was limited and sold for $1,400,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} == Gallery == <gallery> File:Revention rear.jpg|The rear view of the Reventon. File:Revention interior.jpg|Interior shot of the Reventon. </gallery> 3793a913be3ca46fa173cccee4174b4cbdf46e11 2009 Lamburghina Revention Roadster 0 1379 1834 2022-09-03T02:13:19Z S30Z 2 S30Z moved page [[2009 Lamburghina Revention Roadster]] to [[2009 Lamburghina Reventon Roadster]] wikitext text/x-wiki #REDIRECT [[2009 Lamburghina Reventon Roadster]] feecd8c7a63900179a79e488bb139197220170f8 2020 Lamburghina Huracan STO 0 461 1836 772 2022-09-03T02:16:08Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Lamburghina Huracan STO|image=Sto front.jpg|make=Lamburghina|type=Super|price=$327,838|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n|rlname=Lamborghini Huracan STO|limited=1|electric=0}} The 2020 Lamburghina Huracan STO was a limited made by [[Lamburghina]] and sold for $327,838. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The STO has 2 seats and a fuel capacity of 20.9 gallons. {{Stockstats|hpval=630|tqval=473|whval=3172|spdval=208|drv=RWD}}{{Maxstats|hpval=1336|tqval=1284|whval=2672|spdval=208}} == Gallery == <gallery> File:Sto rear.jpg </gallery> 1a66393fa081cc212e19aac7af855bdcff73d059 File:250GTO Front.jpg 6 1380 1837 2022-09-03T02:25:44Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:250GTO Rear.jpg 6 1381 1838 2022-09-03T02:26:14Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:Demon back.jpg 6 1382 1839 2022-09-03T02:26:33Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:Demon front.jpg 6 1383 1840 2022-09-03T02:43:26Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:F5 Front.jpg 6 1384 1841 2022-09-03T02:44:00Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:F5 Rear.jpg 6 1385 1842 2022-09-03T02:44:12Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:LC500 Front.jpg 6 1386 1843 2022-09-03T02:44:28Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:LC500 Prop.jpg 6 1387 1844 2022-09-03T02:50:41Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:LC500 Rear.jpg 6 1388 1845 2022-09-03T02:51:28Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:New Countach Front.jpg 6 1389 1846 2022-09-03T02:51:39Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:New Countach Rear.jpg 6 1390 1847 2022-09-03T02:51:51Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:One Front.jpg 6 1391 1848 2022-09-03T02:52:01Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:One Interior.jpg 6 1392 1849 2022-09-03T02:52:24Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:One Rear.jpg 6 1393 1850 2022-09-03T02:52:45Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:Valkrie Front.jpg 6 1394 1851 2022-09-03T02:52:55Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 File:Valkrie Rear.jpg 6 1395 1852 2022-09-03T02:53:06Z S30Z 2 photo by HPtheamazing wikitext text/x-wiki == Summary == photo by HPtheamazing 198ac4c8d93969569ce354e320476300816a40d9 2018 Dodje Challenger Demon 0 329 1853 1163 2022-09-03T02:54:24Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2018 Dodje Challenger Demon|image=Demon front.jpg|make=Dodje|type=Coupe|price=$86,390|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Dodge_Challenger|rlname=2018 Dodge SRT Demon|limited=0|electric=0}} The 2018 Dodje Challenger Demon is a 2-door American muscle car produced by [[Dodje]], and can be purchased from the dealership for $86,390. == Stats == The Demon seats 4 people and has a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=840|tqval=717|whval=4,280|spdval=202|drv=RWD}}{{Maxstats|hpval=1,423|tqval=1,540|whval=3,780|spdval=207}} == Gallery == [[File:Demon back.jpg|left|thumb|Rear visual of the 2018 Dodje Challenger Demon]] 852ec0b4ad439ffe94dbb72f8363810767335941 1963 Furai 250 GTO 0 465 1854 1198 2022-09-03T02:54:56Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1963 Furai 250 GTO|image=250GTO_Front.jpg|make=Furai|type=Classic|price=$48,400,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ferrari_250_GTO|rlname=Ferrari 250 GTO|limited=1|electric=0}} The [[Furai]] 250 GTO was introduced on May 13, 2022 and is currently the game's most expensive car, trumping the [[1998 McFaren F1|McFaren F1]], now the games second most expensive vehicle, by $26,400,000. The car was available for 1 day at a price of around $48,400,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 250 GTO seats 2 people and has a maximum fuel capacity of 35 gallons.{{Stockstats|hpval=296|tqval=216|whval=2,299|spdval=134|drv=RWD}}{{Maxstats|hpval=1,206|tqval=1,187|whval=1,799|spdval=135}} == Gallery == [[File:250GTO Rear.jpg|left|thumb|Rear view of the 250 GTO]] 5539166ea1b4f92931ed04d4c0a0fd5d483a506d 2021 Ethanol Venom F5 0 445 1855 881 2022-09-03T02:55:30Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Ethanol Venom F5|image=F5 Front.jpg|make=Ethanol|type=Hyper|price=$2,100,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_F5|rlname=Hennessey Venom F5|limited=1|electric=0}} The Ethanol Venom F5 is a 300+ mph hyper car built by [[Ethanol]]. The car was sold as a limited for $2,100,000 in game. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Venom F5 has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=1817|tqval=1193|whval=3053|spdval=329|drv=RWD}}{{Maxstats|hpval=2314|tqval=1316|whval=2553|spdval=329}} == Gallery == [[File:F5 Rear.jpg|left|thumb|Rear view of the Venom F5]] 09ccde17a1b8c780a36a25f9ca20c11bcea993b5 2022 Atone-Mira Valkyrie 0 442 1856 884 2022-09-03T02:56:03Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Atone-Mira Valkyrie|image=Valkrie Front.jpg|make=Atone-Mira|type=Hyper|price=$3,000,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_Valkyrie|rlname=Aston Martin Valkyrie|limited=1|electric=0}} The 2022 Atone-Mira Valkyrie is a hyper car produced by [[Atone-Mira]]. This extreme track oriented vehicle was available for a limited time with a price of $3,000,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Valkyrie has 2 seats and a max fuel capacity of 10 gallons. {{Stockstats|hpval=1160|tqval=663|whval=2315|spdval=228|drv=RWD}}{{Maxstats|hpval=1787|tqval=1726|whval=1815|spdval=228}} == Gallery == <gallery> File:Valkrie Rear.jpg </gallery> 1d61d3413db808404071ab472e1f3f3016fee712 2022 Lamburghina Countach 0 455 1857 1093 2022-09-03T02:57:06Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=New Countach Front.jpg|make=Lamburghina|type=Super|price=$2,640,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made by [[Lamburghina]] which was sold as a limited for $2,640,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}} == Gallery == [[File:New Countach Rear.jpg|left|thumb]] <gallery> </gallery> 71929823b2c214dd73fdc8382cc8f22ec6b0e5a3 2015 Koneggsaga One:1 0 430 1858 1160 2022-09-03T02:57:49Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2015 Koneggsaga One:1|image=One Front.jpg|make=Koneggsaga|type=Hyper|price=$7,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera|rlname=Koenigsegg Agera One:1|limited=1|electric=0}} The 2015 Koneggsaga One:1 is a two door hyper car made under [[Koneggsaga]]. It was sold as a limited for about 2-3 days for $7,900,000. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The One:1 seats 2 people and has a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=1340|tqval=1011|whval=2998|spdval=273|drv=RWD}}{{Maxstats|hpval=1634|tqval=1137|whval=2498|spdval=273}} == Gallery == <gallery> File:One Rear.jpg File:One Interior.jpg </gallery> e3ae5a664757155b4637a429aadfc7dad8469ea0 2021 Luxuss LC500 0 48 1859 1100 2022-09-03T03:00:03Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Luxuss LC500|image=LC500 Front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=0|electric=0}} The 2021 Luxuss LC500 is a two-door luxury coupe produced by [[Luxuss]]. It can be purchased from the dealership for $102,620. == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} == Gallery == <gallery> File:LC500 Rear.jpg|Rear view of the Luxuss LC500 File:LC500 Prop.jpg|The LC500 can also be seen as a display car at the dealership </gallery> e3ddf02704330fa49ec405f40131162f26f16511 File:2020 Corolla Front.jpg 6 1396 1860 2022-09-03T03:10:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1863 1860 2022-09-03T03:13:11Z S30Z 2 wikitext text/x-wiki photo by JordynStar b4f0d4f75a35c34e7af7e3d69bbaf044b8e7e07e File:2020 Corolla Rear.jpg 6 1397 1861 2022-09-03T03:10:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1865 1861 2022-09-03T03:14:24Z S30Z 2 wikitext text/x-wiki photo by JordynStar b4f0d4f75a35c34e7af7e3d69bbaf044b8e7e07e 2020 Toyoto Corolla 0 67 1864 307 2022-09-03T03:13:40Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.jpg|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla|limited=0|electric=0}} The 2020 Toyoto Corolla is a five door hatchback produced by [[Toyoto|Toyoto.]] == Stats == The Vehicle can hold 5 passengers and hold 13 gallons of fuel. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} == Gallery == <gallery> File:2020 Corolla Rear.jpg|2020 Corolla Rear </gallery> 7d771a387952f2761a517e6e7746a0b59a368612 Template:Makeinfo 10 28 1866 259 2022-09-03T03:43:51Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> {{#ifeq: {{{makeimage}}} | Placeholder_Logo.png | [[Category:Car companies with no logo]] | }} [[Category:Car Companies]] </includeonly> <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage": { "label": "Company logo image", "example": "Mazday_Logo.png", "required": true }, "rllink": { "label": "Real-life counterpart Wikipedia link", "example": "https://en.wikipedia.org/wiki/Mazda", "required": true }, "rlname": { "label": "Real-life counterpart name", "example": "Mazda", "required": true } }, "description": "Car company info box" } </templatedata> </noinclude> 3d9aa388e2a82fb0c7cd3ffb019c83993525b3b4 Category:Car companies with no logo 14 1398 1867 2022-09-03T03:45:18Z S30Z 2 Created page with "List of car companies with no logo (using Placeholder_Logo.png)" wikitext text/x-wiki List of car companies with no logo (using Placeholder_Logo.png) 57f048e22bf3815280877915fda78a32b9fb2ab5 Help Wanted 0 1399 1868 2022-09-03T03:51:23Z S30Z 2 Created page with "=== Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]." wikitext text/x-wiki === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. 469571b750bfe7ee455561bf1d7b64313cf051d6 1878 1868 2022-09-03T06:15:23Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. 9f5e8c091eb52ae0ba350f67c65f35a275f3d7a1 2013 BNW M3 GTS 0 1400 1869 2022-09-03T04:15:43Z Cheemsthethird 10 Created page with "{{Carinfo|name=2013 BNW M3 GTS|image=GTS_Front.jpg|make=BNW|type=Coupe|price=$174,000|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/BMW_M3#Special_editions_4|rlname=BMW M3 GTS|limited=1|electric=0}} The 2013 BNW M3 GTS is a track focused 2-door coupe manufactured by [[BNW]]. It is the special version of the [[2013 BNW M3]]. The M3 GTS was a limited car with an estimated price of $174,000 and it can no longer by purchas..." wikitext text/x-wiki {{Carinfo|name=2013 BNW M3 GTS|image=GTS_Front.jpg|make=BNW|type=Coupe|price=$174,000|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/BMW_M3#Special_editions_4|rlname=BMW M3 GTS|limited=1|electric=0}} The 2013 BNW M3 GTS is a track focused 2-door coupe manufactured by [[BNW]]. It is the special version of the [[2013 BNW M3]]. The M3 GTS was a limited car with an estimated price of $174,000 and it can no longer by purchased from the dealership. == Stats == The M3 GTS has two seats and a maximum fuel capacity of 17 gallons. {{Stockstats|hpval=444|tqval=325|whval=3,373|spdval=189|drv=RWD}}{{Maxstats|hpval=1,099|tqval=803|whval=2,873|spdval=235}} == Gallery == 6c8614ea22dc87199c237c6446f4229d33802926 1870 1869 2022-09-03T04:20:12Z Cheemsthethird 10 wikitext text/x-wiki {{Carinfo|name=2013 BNW M3 GTS|image=GTS_Front.jpg|make=BNW|type=Coupe|price=$174,000|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/BMW_M3#Special_editions_4|rlname=BMW M3 GTS|limited=1|electric=0}} The 2013 BNW M3 GTS is a track focused 2-door coupe manufactured by [[BNW]]. It is the special version of the [[2013 BNW M3]]. The M3 GTS was a limited car with an estimated price of $174,000 and it can no longer be purchased from the dealership. == Stats == The M3 GTS has two seats and a maximum fuel capacity of 17 gallons. {{Stockstats|hpval=444|tqval=325|whval=3,373|spdval=189|drv=RWD}}{{Maxstats|hpval=1,099|tqval=803|whval=2,873|spdval=235}} == Gallery == 49a6f995d3de27d848d1cfd959fcacdcdc2b0d11 1871 1870 2022-09-03T04:22:06Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 BNW M3 GTS|image=GTS_Front.jpg|make=BNW|type=Coupe|price=$174,000|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/BMW_M3#Special_editions_4|rlname=BMW M3 GTS|limited=1|electric=0}} The 2013 BNW M3 GTS is a track focused 2-door coupe manufactured by [[BNW]]. It is the special version of the [[2013 BNW M3]]. The M3 GTS was a limited car with an estimated price of $174,000 and it can no longer be purchased from the dealership. == Stats == The M3 GTS has two seats and a maximum fuel capacity of 17 gallons. {{Stockstats|hpval=444|tqval=325|whval=3,373|spdval=189|drv=RWD}}{{Maxstats|hpval=1,099|tqval=803|whval=2,873|spdval=235}} == Gallery == <gallery> File:GTS_Rear.jpg|Rear view of the 2013 BNW M3 GTS. </gallery> e4afac23c1189fdc8d2891187bcca5e5625ae60f File:Bronco 2 Door Front.png 6 1401 1872 2022-09-03T05:21:49Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bronco 2 Door Rear.png 6 1402 1873 2022-09-03T05:22:30Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard Bronco 2 Door 0 1403 1874 2022-09-03T05:36:15Z HPtheamazing 9 Created page with "{{Carinfo|name=2022 Fard Bronco 2-Door|image=Bronco 2 Door Front.png|make=Fard|type=SUV|price=$52,200|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021)|rlname=Ford Bronco (6th gen.)|limited=0|electric=0}} The 2022 Fard Bronco 2-Door is an SUV produced by [[Fard]]. It can be purchased from the dealership for $52,200. == Stats == The Bronco 2-door seats 4 people and has a maximum fuel capacity of 17 ga..." wikitext text/x-wiki {{Carinfo|name=2022 Fard Bronco 2-Door|image=Bronco 2 Door Front.png|make=Fard|type=SUV|price=$52,200|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021)|rlname=Ford Bronco (6th gen.)|limited=0|electric=0}} The 2022 Fard Bronco 2-Door is an SUV produced by [[Fard]]. It can be purchased from the dealership for $52,200. == Stats == The Bronco 2-door seats 4 people and has a maximum fuel capacity of 17 gallons {{Stockstats|hpval=275|tqval=315|whval=4,414|spdval=104|drv=AWD}}{{Maxstats|hpval=925|tqval=17,98|whval=3,914|spdval=179}} == Gallery == [[File:Bronco 2 Door Rear.png|left|thumb|Rear view of the Fard Bronco 2-door]] 628ca6f50f841c99739dfd9d86929f2f104cfec7 1875 1874 2022-09-03T05:46:31Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2022 Fard Bronco 2-Door|image=Bronco 2 Door Front.png|make=Fard|type=SUV|price=$52,200|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Ford_Bronco#Sixth_generation_(U725;_2021)|rlname=Ford Bronco (6th gen.)|limited=0|electric=0}} The 2022 Fard Bronco 2-Door is an SUV produced by [[Fard]]. It can be purchased from the dealership for $52,200. == Stats == The Bronco 2-door seats 4 people and has a maximum fuel capacity of 17 gallons {{Stockstats|hpval=275|tqval=315|whval=4,414|spdval=104|drv=AWD}}{{Maxstats|hpval=925|tqval=1,798|whval=3,914|spdval=179}} == Gallery == [[File:Bronco 2 Door Rear.png|left|thumb|Rear view of the Fard Bronco 2-door]] f1c909d32a87371fe05ca69b7701e147df623e2f Team 0 1404 1876 2022-09-03T06:12:48Z S30Z 2 Created page with "This page lists the members of the Strigid Wiki Team. The preferred contact method is Discord. (Strigid server, BSRP, OSFR...) === Bureaucrat === [https://www.roblox.com/users/42859191/profile S30Z] === Admin === [https://www.roblox.com/users/222011371/profile Hank] [https://www.roblox.com/users/683778028/profile Typical] === Editor === [https://www.roblox.com/users/53974304/profile Aid] [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.c..." wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. The preferred contact method is Discord. (Strigid server, BSRP, OSFR...) === Bureaucrat === [https://www.roblox.com/users/42859191/profile S30Z] === Admin === [https://www.roblox.com/users/222011371/profile Hank] [https://www.roblox.com/users/683778028/profile Typical] === Editor === [https://www.roblox.com/users/53974304/profile Aid] [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] f6b3e48f15181c5d5b135e12ebff03703f4deab0 Main Page 0 1 1877 1765 2022-09-03T06:13:58Z S30Z 2 /* For visitors */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[Easter Eggs]] ===For visitors === Hello. This is a very early work in progress. [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===For editors=== [[Guides]] 5ea53da6b87801fa19030eee9dac32e4708d62e3 Jeff's Pizza Employee 0 1405 1879 2022-09-03T06:25:20Z S30Z 2 Created page with "{{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. Jeff's Pizza is located near Bublix. Players do not need to own any gamepass to work at this job. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=N/A |rank3=Head Cook |rank3pay=N/A |rank4=Shift Manager |rank4pay=N/A |rank5=Store Manager |rank5pay=N/A}}" wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. Jeff's Pizza is located near Bublix. Players do not need to own any gamepass to work at this job. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=N/A |rank3=Head Cook |rank3pay=N/A |rank4=Shift Manager |rank4pay=N/A |rank5=Store Manager |rank5pay=N/A}} 259fe88ad6d175124b6e16a53f2644e002744f1b 1880 1879 2022-09-03T06:25:40Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. Jeff's Pizza is located near Bublix. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=N/A |rank3=Head Cook |rank3pay=N/A |rank4=Shift Manager |rank4pay=N/A |rank5=Store Manager |rank5pay=N/A}} 593ec979223fe0fd5ad0f3fa84badcd9ced67baf File:H3 Front.jpg 6 1406 1881 2022-09-03T07:48:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:H3 Rear.jpg 6 1407 1882 2022-09-03T07:49:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:H3Limo Front.jpg 6 1408 1883 2022-09-03T07:49:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:H3Limo Rear.jpg 6 1409 1884 2022-09-03T07:49:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2009 Hammer H3 0 1410 1885 2022-09-03T07:51:01Z S30Z 2 Created page with " {{Carinfo |name=2009 Hammer H3 |image=H3_Front.jpg |make=Hammer |type=SUV |price=$15,419 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hummer_H3 |rlname=Hummer H3 |limited=0 |electric=0 }} The 2009 Hammer H3 is a four door SUV produced by [[Hammer]]. It can be purchased from the dealership for $15,419. ==Stats== The H3 has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=300|tqval=320|whval=4848|spdval=113|drv=AWD}} {{Ma..." wikitext text/x-wiki {{Carinfo |name=2009 Hammer H3 |image=H3_Front.jpg |make=Hammer |type=SUV |price=$15,419 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hummer_H3 |rlname=Hummer H3 |limited=0 |electric=0 }} The 2009 Hammer H3 is a four door SUV produced by [[Hammer]]. It can be purchased from the dealership for $15,419. ==Stats== The H3 has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=300|tqval=320|whval=4848|spdval=113|drv=AWD}} {{Maxstats|hpval=960|tqval=795|whval=4348|spdval=196}} ==Gallery== <gallery> File:H3_Rear.jpg|Rear view of the 2009 Hammer H3. </gallery> ec022bca1923398bd42cf51154a85925c6a71988 2009 Hammer H3 Limousine 0 1411 1886 2022-09-03T07:51:45Z S30Z 2 Created page with " {{Carinfo |name=2009 Hammer H3 Limousine |image=H3Limo_Front.jpg |make=Hammer |type=SUV |price=$49,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hummer_H3 |rlname=Hummer H3 |limited=0 |electric=0 }} The 2009 Hammer H3 Limousine is a four door SUV-based limousine produced by [[Hammer]]. It can be purchased from the dealership for $49,000. ==Stats== The H3 Limousine has 10 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval..." wikitext text/x-wiki {{Carinfo |name=2009 Hammer H3 Limousine |image=H3Limo_Front.jpg |make=Hammer |type=SUV |price=$49,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Hummer_H3 |rlname=Hummer H3 |limited=0 |electric=0 }} The 2009 Hammer H3 Limousine is a four door SUV-based limousine produced by [[Hammer]]. It can be purchased from the dealership for $49,000. ==Stats== The H3 Limousine has 10 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=300|tqval=320|whval=4848|spdval=113|drv=AWD}} {{Maxstats|hpval=960|tqval=795|whval=4348|spdval=196}} ==Gallery== <gallery> File:H3Limo_Rear.jpg|Rear view of the 2009 Hammer H3 Limousine. </gallery> 52e0bd98fb40b68d2d7ce554c420e7228367a8d6 File:Flaminggarfield.jpg 6 1412 1887 2022-09-03T07:55:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:NiceParking.jpg 6 1413 1888 2022-09-03T07:58:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Damagedsign.jpg 6 1414 1889 2022-09-03T07:59:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Easter Eggs 0 1233 1890 1665 2022-09-03T07:59:47Z S30Z 2 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == Bugged Houses == Around the Bonita Cove cul-de-sac near Fintech, there are a total of 6 bugged houses. These houses are facing away from the road and have missing or misplaced doors and window textures. <gallery> File:Bughouse1.jpg File:Bughouse2.jpg File:Bughouse3.jpg File:Bughouse4.jpg File:Bughouse5.jpg File:Bughouse6.jpg </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> d2f79b893ea9e7207e381c99c8bb88f87b67168a Jeff's Pizza 0 1415 1891 2022-09-03T08:00:15Z S30Z 2 Redirected page to [[Jeff's Pizza Employee]] wikitext text/x-wiki #REDIRECT [[Jeff's Pizza Employee]] 4e2ae6ba01520219917490e7bb1ebaf7ce98ed7b MediaWiki:Common.css 8 2 1892 1730 2022-09-03T08:27:25Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } 3264c3971d20e5ab634b2e79a37071d93442f88a 1897 1892 2022-09-03T20:42:44Z S30Z 2 Undo revision 1892 by [[Special:Contributions/S30Z|S30Z]] ([[User talk:S30Z|talk]]) css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoBold'; src: url('https://static.miraheze.org/strigidwiki/7/7d/TruenoBd.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .infoname { font-family: TruenoSemibold; } .vector-body h3 { font-family: TruenoRegular; } .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoBold; } th { text-transform: uppercase; font-family: TruenoSemibold; } ace9e1dd9ac48a168c7b430f5fd529dcf04fb615 1898 1897 2022-09-03T20:54:09Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } 9d90b2be317736305f646009d388b2d7acf2c833 File:21Daytona Plate.png 6 1416 1893 2022-09-03T19:55:30Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:21Daytona Rear.png 6 1417 1894 2022-09-03T19:56:49Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:21Daytona Stripe.png 6 1418 1895 2022-09-03T19:59:16Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Dodje Charger Badcat Daytona 0 1419 1896 2022-09-03T20:06:55Z Cheemsthethird 10 Created page with "{{Carinfo|name=2020 Dodje Charger Badcat Daytona|image=21Daytona_Front.jpg|make=Dodje|type=Sedan|price=$83,215|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Dodge_Charger_Daytona#2017/2020|rlname=Dodge Charger SRT Hellcat Daytona|limited=1|electric=0}} The 2020 Dodje Charger Badcat Daytona is a high performance 4 door sedan manufactured by [[Dodje]]. It is the special version of the [[2020 Dodje Charger Badcat]]. As a..." wikitext text/x-wiki {{Carinfo|name=2020 Dodje Charger Badcat Daytona|image=21Daytona_Front.jpg|make=Dodje|type=Sedan|price=$83,215|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Dodge_Charger_Daytona#2017/2020|rlname=Dodge Charger SRT Hellcat Daytona|limited=1|electric=0}} The 2020 Dodje Charger Badcat Daytona is a high performance 4 door sedan manufactured by [[Dodje]]. It is the special version of the [[2020 Dodje Charger Badcat]]. As a limited vehicle, it can no longer be purchased from the dealership. Its estimated price was $83,215. == Stats == The Badcat Daytona has 5 seats and a maximum fuel capacity of 17 gallons. {{Stockstats|hpval=717|tqval=650|whval=4,586|spdval=200|drv=RWD}}{{Maxstats|hpval=1,540|tqval=1,488|whval=4,086|spdval=227}} == Gallery == <gallery mode="nolines" widths="300" heights="300"> File:21Daytona Rear.png|The rear view of the Badcat Daytona. File:21Daytona Plate.png|Unlike most vehicles in Southwest Florida, the Badcat Daytona has a Michigan state plate. File:21Daytona Stripe.png|The Badcat Daytona's tail stripe. </gallery> e11f346fda47007ccb0f95bfbfca82b79edd32d1 2019 Fard Ranger CSU 0 1333 1899 1764 2022-09-03T21:53:39Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSU |image=RangerCSU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSU is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSU has 8 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSU_Rear.jpg|Rear view of the 2019 Fard Ranger CSU. </gallery> 7a77fe4675f151b31f282c5784d052a98ceef25c File:RangerCSA Front.jpg 6 1420 1900 2022-09-03T21:59:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RangerCSA Rear.jpg 6 1421 1901 2022-09-03T21:59:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Fard Ranger CSA 0 1422 1902 2022-09-03T21:59:58Z S30Z 2 Created page with " {{Carinfo |name=2019 Fard Ranger CSA |image=RangerCSA_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSA is a [[Community Service Aide|community service]] vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a compliment..." wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSA |image=RangerCSA_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSA is a [[Community Service Aide|community service]] vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSA has 8 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSA_Rear.jpg|Rear view of the 2019 Fard Ranger CSA. </gallery> 5d5b5e55e1cce7a32713a6f1a0c24bcd51179d5c Sheriff 0 315 1903 570 2022-09-03T22:17:18Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= This job requires the Law Enforcement+ gamepass. The Sheriff does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a sheriff no matter where the player is. Sheriffs can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Sheriffs are equipped with a M1911, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Deputy |rank1pay=$240 |rank2=Sergeant |rank2pay=$350 |rank3=Captain |rank3pay=$575 |rank4=Chief Deputy |rank4pay=$950 |rank5=Sheriff |rank5pay=$1500}} 8dfbfcfceeab8deaa6f2c9cd3aad355bc193eacd Police 0 297 1904 1663 2022-09-03T22:18:09Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} 9c8f48bcfea62fc1306d73717ae226c6fdc8d0b1 1937 1904 2022-09-04T08:48:38Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} == Location == todo 75b4f8f9aa4da5090e076f0fd8785df9ed46c976 Criminal 0 292 1905 1594 2022-09-03T22:22:09Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, ONLY if both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |McBloxxer's |Thief |3 cash registers |80s per register |300s (5m) per register |- |StudRac |Thief |2 cash registers |80s per register |300s (5m) per register |- |CVC Pharmacy |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Jeff's Pizza |Grunt |2 cash registers |80s per register |300s (5m) per register |- |Bublix |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |Starblocks |Felon |2 cash registers |80s per register |300s (5m) per register |- |Dippin' Donuts |Felon |2 cash registers |80s per register |300s (5m) per register |- |R.W. Bank |Crimelord |Bank vault |300s |2000s (33m) |} 38322d89bee3c542cca294b4d997ab048190d3ce Weapons 0 1423 1906 2022-09-03T22:32:04Z S30Z 2 Created page with "Weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. == G17 == == M9 == == M1911 == == AK47 == == M4A1 == == Shotgun ==" wikitext text/x-wiki Weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. == G17 == == M9 == == M1911 == == AK47 == == M4A1 == == Shotgun == 2cc65b0f31b0a449201106368f66d1e7ae2f0568 1907 1906 2022-09-04T00:01:14Z S30Z 2 wikitext text/x-wiki Weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. === AK47 === The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. === M4A1 === The M4A1 is an automatic assault rifle exclusive to police officers and sheriffs. === Shotgun === The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. bf0269746e708193413e4ff3389739b4a23eea27 1908 1907 2022-09-04T00:09:35Z S30Z 2 wikitext text/x-wiki Weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. It deals around 16 damage per bodyshot and around 33 damage on headshot. === AK47 === The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. === M4A1 === The M4A1 is a fully automatic assault rifle exclusive to police officers and sheriffs. It has a total of 180 rounds with 30 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. === Shotgun === The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. 201bc0e8d657eb26cefaa185ed61bdf41d6c35a5 1909 1908 2022-09-04T00:16:17Z S30Z 2 wikitext text/x-wiki Weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. It deals around 16 damage per bodyshot and around 33 damage on headshot. It takes approximately 3 seconds to reload. === AK47 === This weapon requires the Assault Rifles Pack gamepass. The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. It takes approximately 3 seconds to reload. === M4A1 === This weapon requires the Assault Rifles Pack gamepass. The M4A1 is a fully automatic assault rifle exclusive to police officers and sheriffs. It has a total of 180 rounds with 30 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. === Shotgun === This weapon requires the Shotgun gamepass. The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. It takes approximately 5 seconds to reload. 8487e2a44e035705d6d3581fb73eb6e43634f880 1910 1909 2022-09-04T00:42:59Z S30Z 2 wikitext text/x-wiki Most weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. It deals around 16 damage per bodyshot and around 33 damage on headshot. It takes approximately 3 seconds to reload. === AK47 === This weapon requires the Assault Rifles Pack gamepass. The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. It takes approximately 3 seconds to reload. === M4A1 === This weapon requires the Assault Rifles Pack gamepass. The M4A1 is a fully automatic assault rifle exclusive to police officers and sheriffs. It has a total of 180 rounds with 30 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. === Shotgun === This weapon requires the Shotgun gamepass. The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. It takes approximately 5 seconds to reload. === Taser === The taser can be used by police officers, sheriffs and [[Community Service Aide|community service aides]]. It does not appear to do anything nor have a purpose outside roleplay. 5ba8f245f0b70320ffdbf8623b6fa903203e2b85 1918 1910 2022-09-04T00:49:39Z S30Z 2 wikitext text/x-wiki Most weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:G17.jpg </gallery> === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:M9.jpg </gallery> === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. It deals around 16 damage per bodyshot and around 33 damage on headshot. It takes approximately 3 seconds to reload. <gallery> File:M1911.jpg </gallery> === AK47 === This weapon requires the Assault Rifles Pack gamepass. The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:AK47.jpg </gallery> === M4A1 === This weapon requires the Assault Rifles Pack gamepass. The M4A1 is a fully automatic assault rifle exclusive to police officers and sheriffs. It has a total of 180 rounds with 30 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:M4A1.jpg </gallery> === Shotgun === This weapon requires the Shotgun gamepass. The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. It takes approximately 5 seconds to reload. <gallery> File:Shotgun.jpg </gallery> === Taser === The taser can be used by police officers, sheriffs and [[Community Service Aide|community service aides]]. It does not appear to do anything, giving it no purpose outside roleplay. <gallery> File:Taser.jpg </gallery> 8569bcab046b13519b92cead2ddb246d4f85153b 1939 1918 2022-09-04T08:50:03Z S30Z 2 wikitext text/x-wiki Most weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]] Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:G17.jpg </gallery> === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:M9.jpg </gallery> === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. It deals around 16 damage per bodyshot and around 33 damage on headshot. It takes approximately 3 seconds to reload. <gallery> File:M1911.jpg </gallery> === AK47 === This weapon requires the Assault Rifles Pack gamepass. The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:AK47.jpg </gallery> === M4A1 === This weapon requires the Assault Rifles Pack gamepass. The M4A1 is a fully automatic assault rifle exclusive to police officers and sheriffs. It has a total of 180 rounds with 30 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:M4A1.jpg </gallery> === Shotgun === This weapon requires the Shotgun gamepass. The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. It takes approximately 5 seconds to reload. <gallery> File:Shotgun.jpg </gallery> === Taser === The taser can be used by police officers, sheriffs and [[Community Service Aide|community service aides]]. It does not appear to do anything, giving it no purpose outside roleplay. <gallery> File:Taser.jpg </gallery> 215cb6e8c4514f0bc60cef2a5bea94a6a95f3a50 1940 1939 2022-09-04T08:50:52Z S30Z 2 wikitext text/x-wiki ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Most weapons can only be used by [[Sheriff|sheriffs]], [[Police|police officers]] and [[Criminal|criminals]]. Some weapons require a gamepass. === G17 === The G17 is a pistol exclusive to police officers. It has a total of 170 rounds with 17 rounds per magazine. It deals around 13 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:G17.jpg </gallery> === M9 === The M9 is a pistol exclusive to criminals. It has a total of 150 rounds with 15 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:M9.jpg </gallery> === M1911 === The M1911 is a pistol exclusive to sheriffs. It has a total of 170 rounds with 8 rounds per magazine. It deals around 16 damage per bodyshot and around 33 damage on headshot. It takes approximately 3 seconds to reload. <gallery> File:M1911.jpg </gallery> === AK47 === This weapon requires the Assault Rifles Pack gamepass. The AK47 is a semi-automatic assault rifle exclusive to criminals. It has a total of 180 rounds with 30 rounds per magazine. It deals around 20 damage per body shot and around 33 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:AK47.jpg </gallery> === M4A1 === This weapon requires the Assault Rifles Pack gamepass. The M4A1 is a fully automatic assault rifle exclusive to police officers and sheriffs. It has a total of 180 rounds with 30 rounds per magazine. It deals around 14 damage per body shot and 25 damage per head shot. It takes approximately 3 seconds to reload. <gallery> File:M4A1.jpg </gallery> === Shotgun === This weapon requires the Shotgun gamepass. The shotgun can be used by police officers, sheriffs and criminals. On body shots, it can deal anywhere from 20 to approximately 70 damage depending on range. It deals around 33 damage on a mid-long range headshot and around 70 damage on a close range headshot. It takes approximately 5 seconds to reload. <gallery> File:Shotgun.jpg </gallery> === Taser === The taser can be used by police officers, sheriffs and [[Community Service Aide|community service aides]]. It does not appear to do anything, giving it no purpose outside roleplay. <gallery> File:Taser.jpg </gallery> 8fac283031c14c6197401a37c62caaf90aa5e32d File:M9.jpg 6 1424 1911 2022-09-04T00:45:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G17.jpg 6 1425 1912 2022-09-04T00:46:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:M1911.jpg 6 1426 1913 2022-09-04T00:46:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Taser.jpg 6 1427 1914 2022-09-04T00:47:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:AK47.jpg 6 1428 1915 2022-09-04T00:47:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Shotgun.jpg 6 1429 1916 2022-09-04T00:48:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:M4A1.jpg 6 1430 1917 2022-09-04T00:49:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Ammo refill boxes 0 1431 1919 2022-09-04T01:43:14Z S30Z 2 Created page with "todo" wikitext text/x-wiki todo 05f20a71783db1a6f0c4e75ebb1914154e901af2 1920 1919 2022-09-04T08:29:52Z S30Z 2 wikitext text/x-wiki <gallery> File:Ammobox1.jpg|Near the garbage cans at the Studrac between the unemployed spawn and Sunset Performance. File:Ammobox2.jpg|By the garbage cans at McBloxxer's. File:Ammobox3.jpg|By the garbage cans at Dippin' Donuts. File:Ammobox4.jpg|By the garbage cans at Starblocks. File:Ammobox5.jpg|On the right corner of Bublix. File:Ammobox6.jpg|In a bush next to a parked car at RW Bank. File:Ammobox7.jpg|By the lockers in the police station's garage. </gallery> fee787434395b20f572cb798ef9fe63276b697b5 1921 1920 2022-09-04T08:30:09Z S30Z 2 S30Z moved page [[Ammo boxes]] to [[Ammo refill boxes]] wikitext text/x-wiki <gallery> File:Ammobox1.jpg|Near the garbage cans at the Studrac between the unemployed spawn and Sunset Performance. File:Ammobox2.jpg|By the garbage cans at McBloxxer's. File:Ammobox3.jpg|By the garbage cans at Dippin' Donuts. File:Ammobox4.jpg|By the garbage cans at Starblocks. File:Ammobox5.jpg|On the right corner of Bublix. File:Ammobox6.jpg|In a bush next to a parked car at RW Bank. File:Ammobox7.jpg|By the lockers in the police station's garage. </gallery> fee787434395b20f572cb798ef9fe63276b697b5 1923 1921 2022-09-04T08:31:15Z S30Z 2 wikitext text/x-wiki Ammo refill boxes allow police officers, sheriffs and criminals to quickly refill their ammo by simply walking over them. <gallery> File:Ammobox1.jpg|Near the garbage cans at the Studrac between the unemployed spawn and Sunset Performance. File:Ammobox2.jpg|By the garbage cans at McBloxxer's. File:Ammobox3.jpg|By the garbage cans at Dippin' Donuts. File:Ammobox4.jpg|By the garbage cans at Starblocks. File:Ammobox5.jpg|On the right corner of Bublix. File:Ammobox6.jpg|In a bush next to a parked car at RW Bank. File:Ammobox7.jpg|By the lockers in the police station's garage. </gallery> d82a1d6a3b7837d1ab67912df235b5c2906fa51c 1924 1923 2022-09-04T08:34:41Z S30Z 2 wikitext text/x-wiki Ammo refill boxes allow police officers, sheriffs and criminals to quickly refill their ammo by simply walking over them. <gallery> File:Ammobox1.jpg|Near the garbage cans at the Studrac between the unemployed spawn and Sunset Performance. File:Ammobox2.jpg|By the garbage cans at McBloxxer's. File:Ammobox3.jpg|By the garbage can at Dippin' Donuts. File:Ammobox4.jpg|By the garbage cans at Starblocks. File:Ammobox5.jpg|On the right corner of Bublix. File:Ammobox6.jpg|In a bush next to a parked car at RW Bank. File:Ammobox7.jpg|By the lockers in the police station's garage. </gallery> d1cf47198ed56d00279a92191323396383c5f057 1941 1924 2022-09-04T08:51:07Z S30Z 2 wikitext text/x-wiki Ammo refill boxes allow [[Police|police officers]], [[Sheriff|sheriffs]] and [[Criminal|criminals]] to quickly refill their ammo by simply walking over them. <gallery> File:Ammobox1.jpg|Near the garbage cans at the [[StudRac Employee#Location|Studrac]] between the unemployed spawn and Sunset Performance. File:Ammobox2.jpg|By the garbage cans at [[McBloxxer's Employee#Location|McBloxxer's]]. File:Ammobox3.jpg|By the garbage can at [[Dippin' Donuts Employee#Location|Dippin' Donuts]]. File:Ammobox4.jpg|By the garbage cans at [[Cafe Worker#Location|Starblocks]]. File:Ammobox5.jpg|On the right corner of [[Bublix Employee#Location|Bublix]]. File:Ammobox6.jpg|In a bush next to a parked car at [[RW Bank Employee#Location|RW Bank]]. File:Ammobox7.jpg|By the lockers in the [[Police#Location|police station]]'s garage. </gallery> 7d637d36c0b7e296e8a2616fec4e28ec0254ec1c Ammo boxes 0 1432 1922 2022-09-04T08:30:09Z S30Z 2 S30Z moved page [[Ammo boxes]] to [[Ammo refill boxes]] wikitext text/x-wiki #REDIRECT [[Ammo refill boxes]] ca973cba4393766f059d5522b9ded1daa9fd8e92 File:Ammobox1.jpg 6 1433 1925 2022-09-04T08:36:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ammobox2.jpg 6 1434 1926 2022-09-04T08:36:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ammobox3.jpg 6 1435 1927 2022-09-04T08:37:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ammobox4.jpg 6 1436 1928 2022-09-04T08:37:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ammobox5.jpg 6 1437 1929 2022-09-04T08:37:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ammobox6.jpg 6 1438 1930 2022-09-04T08:37:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Ammobox7.jpg 6 1439 1931 2022-09-04T08:38:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 StudRac Employee 0 300 1932 563 2022-09-04T08:43:45Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == todo [[Category:Jobs]] 99e843e72daa5d6c6345e6ed93b426a104c41277 McBloxxer's Employee 0 295 1933 558 2022-09-04T08:45:34Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == todo [[Category:Jobs]] 99e843e72daa5d6c6345e6ed93b426a104c41277 Dippin' Donuts Employee 0 317 1934 572 2022-09-04T08:46:59Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == todo [[Category:Jobs]] 99e843e72daa5d6c6345e6ed93b426a104c41277 Cafe Worker 0 291 1935 554 2022-09-04T08:47:41Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == todo [[Category:Jobs]] 3f25e4a945fe112fe1360b145263d87fca0bd647 Bubmart Employee 0 310 1936 567 2022-09-04T08:47:58Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == todo [[Category:Jobs]] 3f25e4a945fe112fe1360b145263d87fca0bd647 RW Bank Employee 0 298 1938 561 2022-09-04T08:48:40Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == todo [[Category:Jobs]] 99e843e72daa5d6c6345e6ed93b426a104c41277 Guns 0 1440 1942 2022-09-04T09:02:42Z S30Z 2 Redirected page to [[Weapons]] wikitext text/x-wiki #REDIRECT [[Weapons]] b2b7726a0610fead897f74c818ef48da98b1204e File:X6M Front.jpg 6 1441 1943 2022-09-04T22:07:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:X6M Rear.jpg 6 1442 1944 2022-09-04T22:08:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:XC90 Rear.jpg 6 1443 1945 2022-09-04T22:08:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:XC90 Front.jpg 6 1444 1946 2022-09-04T22:08:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Suburban Rear.jpg 6 1445 1947 2022-09-04T22:08:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Suburban Front.jpg 6 1446 1948 2022-09-04T22:09:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Expedition Rear.jpg 6 1447 1949 2022-09-04T22:09:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Expedition Front.jpg 6 1448 1950 2022-09-04T22:09:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Tahoe Rear.jpg 6 1449 1951 2022-09-04T22:09:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Tahoe Front.jpg 6 1450 1952 2022-09-04T22:10:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:884Runner Front.jpg 6 1451 1953 2022-09-04T22:10:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:884Runner Rear.jpg 6 1452 1954 2022-09-04T22:10:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 BNW X6M 0 1453 1955 2022-09-04T22:16:10Z S30Z 2 Created page with " {{Carinfo |name=2021 BNW X6M |image=X6M_Front.jpg |make=BNW |type=SUV |price=$118,700 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_X6#Third_generation_(G06;_2020) |rlname=BMW X6 M (3rd gen.) |limited=0 |electric=0 }} The 2021 BNW X6M is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $118,700. ==Stats== The X6M has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=567|tqval=553|whval=..." wikitext text/x-wiki {{Carinfo |name=2021 BNW X6M |image=X6M_Front.jpg |make=BNW |type=SUV |price=$118,700 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_X6#Third_generation_(G06;_2020) |rlname=BMW X6 M (3rd gen.) |limited=0 |electric=0 }} The 2021 BNW X6M is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $118,700. ==Stats== The X6M has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=567|tqval=553|whval=5060|spdval=179|drv=AWD}} {{Maxstats|hpval=1103|tqval=1305|whval=4560|spdval=231}} ==Gallery== <gallery> File:X6M_Rear.jpg|Rear view of the 2021 BNW X6M. </gallery> 606e1d4d5f78745e3840a41475afe125fa38e911 1988 Toyoto 4Runner 0 1454 1956 2022-09-04T22:16:37Z S30Z 2 Created page with " {{Carinfo |name=1988 Toyoto 4Runner |image=884Runner_Front.jpg |make=Toyoto |type=SUV |price=$6,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_4Runner#First_generation_(N60;_1983) |rlname=Toyota 4Runner (1st gen.) |limited=0 |electric=0 }} The 1988 Toyoto 4Runner is a two door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $6,250. ==Stats== The 4Runner has 5 seats and a fuel capacity of 17 gallons...." wikitext text/x-wiki {{Carinfo |name=1988 Toyoto 4Runner |image=884Runner_Front.jpg |make=Toyoto |type=SUV |price=$6,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_4Runner#First_generation_(N60;_1983) |rlname=Toyota 4Runner (1st gen.) |limited=0 |electric=0 }} The 1988 Toyoto 4Runner is a two door SUV produced by [[Toyoto]]. It can be purchased from the dealership for $6,250. ==Stats== The 4Runner has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=105|tqval=140|whval=3968|spdval=92|drv=AWD}} {{Maxstats|hpval=662|tqval=978|whval=3498|spdval=109}} ==Gallery== <gallery> File:884Runner_Rear.jpg|Rear view of the 1988 Toyoto 4Runner. </gallery> a324fbd3f81b08a660db64550a4aa8b47915760d 2020 Chavy Tahoe 0 1455 1957 2022-09-04T22:17:20Z S30Z 2 Created page with " {{Carinfo |name=2020 Chavy Tahoe |image=Tahoe_Front.jpg |make=Chavy |type=SUV |price=$45,700 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Fourth_generation_(2015) |rlname=Chevrolet Tahoe (4th gen.) |limited=0 |electric=0 }} The 2020 Chavy Tahoe is a four door SUV produced by [[Chavy]]. It can be purchased from the dealership for $45,700. ==Stats== The Tahoe has 5 seats and a fuel capacity of 28 gallons. {{Stockstats|..." wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe |image=Tahoe_Front.jpg |make=Chavy |type=SUV |price=$45,700 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Fourth_generation_(2015) |rlname=Chevrolet Tahoe (4th gen.) |limited=0 |electric=0 }} The 2020 Chavy Tahoe is a four door SUV produced by [[Chavy]]. It can be purchased from the dealership for $45,700. ==Stats== The Tahoe has 5 seats and a fuel capacity of 28 gallons. {{Stockstats|hpval=355|tqval=383|whval=5681|spdval=109|drv=AWD}} {{Maxstats|hpval=1032|tqval=907|whval=5181|spdval=180}} ==Gallery== <gallery> File:Tahoe_Rear.jpg|Rear view of the 2020 Chavy Tahoe. </gallery> 120f7469a75ee0bfd0fd33cef8112bc3d26b4844 2021 Fard Expedition 0 1456 1958 2022-09-04T22:17:55Z S30Z 2 Created page with " {{Carinfo |name=2021 Fard Expedition |image=Expedition_Front.jpg |make=Fard |type=SUV |price=$52,810 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Expedition#Fourth_generation_(2018) |rlname=Ford Expedition (4th gen.) |limited=0 |electric=0 }} The 2021 Fard Expedition is a four door SUV produced by [[Fard]]. It can be purchased from the dealership for $52,810. ==Stats== The Expedition has 7 seats and a fuel capacity of 23 gallons..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Expedition |image=Expedition_Front.jpg |make=Fard |type=SUV |price=$52,810 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Expedition#Fourth_generation_(2018) |rlname=Ford Expedition (4th gen.) |limited=0 |electric=0 }} The 2021 Fard Expedition is a four door SUV produced by [[Fard]]. It can be purchased from the dealership for $52,810. ==Stats== The Expedition has 7 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=375|tqval=470|whval=5443|spdval=127|drv=AWD}} {{Maxstats|hpval=1101|tqval=1566|whval=4943|spdval=208}} ==Gallery== <gallery> File:Expedition_Rear.jpg|Rear view of the 2021 Fard Expedition. </gallery> b749c2eed89e4212a973c4d17668dac219ee75f4 2020 Chavy Suburban RST 0 1457 1959 2022-09-04T22:19:02Z S30Z 2 Created page with " {{Carinfo |name=2020 Chavy Suburban RST |image=Suburban_Front.jpg |make=Chavy |type=SUV |price=$68,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Suburban#Eleventh_generation_(2015) |rlname=Chevrolet Suburban (11th gen.) |limited=0 |electric=0 }} The 2020 Chavy Suburban RST is a four door SUV produced by [[Chavy]]. It can be purchased from the dealership for $68,998. ==Stats== The Suburban RST has 7 seats and a fuel capac..." wikitext text/x-wiki {{Carinfo |name=2020 Chavy Suburban RST |image=Suburban_Front.jpg |make=Chavy |type=SUV |price=$68,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Suburban#Eleventh_generation_(2015) |rlname=Chevrolet Suburban (11th gen.) |limited=0 |electric=0 }} The 2020 Chavy Suburban RST is a four door SUV produced by [[Chavy]]. It can be purchased from the dealership for $68,998. ==Stats== The Suburban RST has 7 seats and a fuel capacity of 31 gallons. {{Stockstats|hpval=420|tqval=460|whval=5809|spdval=130|drv=AWD}} {{Maxstats|hpval=1111|tqval=1444|whval=5309|spdval=206}} ==Gallery== <gallery> File:Suburban_Rear.jpg|Rear view of the 2020 Suburban RST. </gallery> a8fe00790a72cbf752acc875581165fbc1b74f90 2016 Vovol XC90 T6 R-Design 0 1458 1960 2022-09-04T22:19:55Z S30Z 2 Created page with " {{Carinfo |name=2016 Vovol XC90 T6 R-Design |image=XC90_Front.jpg |make=Vovol |type=SUV |price=$42,369 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_XC90#Second_generation_(2015%E2%80%93present) |rlname=Volvo XC90 (2nd gen.) |limited=0 |electric=0 }} The 2016 Vovol XC90 T6 R-Design is a four door SUV produced by [[Vovol]]. It can be purchased from the dealership for $42,369. ==Stats== The XC90 has 7 seats and a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=2016 Vovol XC90 T6 R-Design |image=XC90_Front.jpg |make=Vovol |type=SUV |price=$42,369 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_XC90#Second_generation_(2015%E2%80%93present) |rlname=Volvo XC90 (2nd gen.) |limited=0 |electric=0 }} The 2016 Vovol XC90 T6 R-Design is a four door SUV produced by [[Vovol]]. It can be purchased from the dealership for $42,369. ==Stats== The XC90 has 7 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=316|tqval=329|whval=4394|spdval=132|drv=AWD}} {{Maxstats|hpval=829|tqval=992|whval=3894|spdval=208}} ==Gallery== <gallery> File:XC90_Rear.jpg|Rear view of the 2016 Vovol XC90 T6 R-Design. </gallery> 700a515c723a24a71399bbf2f56c6abaf051b626 Cafe Worker 0 291 1961 1935 2022-09-04T23:08:22Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == todo eca10247fa17e51b6a8348bd2873b055362e6701 1965 1961 2022-09-05T00:17:45Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == Starblocks is located across from Fintech and the LHS Hospital. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> 031c51fd0b1681a5da3c28f0bcd9db598b162f8e 1987 1965 2022-09-05T05:41:56Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Starblocks is located across from Fintech and the LHS Hospital. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> a89a790dad25604847c1eccbd41ba77ad4ccc6bc 1993 1987 2022-09-05T21:05:37Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Starblocks is located across from Fintech and the LHS Hospital. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> ==Items that can be purchased at McBloxxer's== {| class="wikitable" |- !Item!!Cost |- |Cakepop||$2 |- |Coffee||$2 |- |Iced Tea |$2 |- |Doughnut |$2 |- |Burrito |$2 |- |Iced Coffee||$3 |- |Pink Drink||$5 |- |Latte||$5 |- |Frappuccino |$6 |} 1b09988fbd49db7320b330d0c1a202a4017c7f09 1994 1993 2022-09-05T21:06:00Z S30Z 2 /* Items that can be purchased at McBloxxer's */ wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Starblocks is located across from Fintech and the LHS Hospital. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> ==Items that can be purchased at Starblocks== {| class="wikitable" |- !Item!!Cost |- |Cakepop||$2 |- |Coffee||$2 |- |Iced Tea |$2 |- |Doughnut |$2 |- |Burrito |$2 |- |Iced Coffee||$3 |- |Pink Drink||$5 |- |Latte||$5 |- |Frappuccino |$6 |} 8752a7bc0c29d5d768f782abbb5f8cf4c018fd1a Dealership Employee 0 293 1962 556 2022-09-04T23:11:44Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Dealership Employee job requires staying inside the dealership in order to make money and level up. |resp= *Help citizens purchase their next vehicle |rank1=Sales Associate |rank1pay=$250 |rank2=Sales Consultant |rank2pay=$375 |rank3=Sales Manager |rank3pay=$625 |rank4=Finance Manager |rank4pay=$1205 |rank5=General Manager |rank5pay=$1750}} == Location == todo 38079340ad32488d0884398d0b0cde1216a408a4 1979 1962 2022-09-05T03:58:16Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Dealership Employee job requires staying inside the dealership in order to make money and level up. |resp= *Help citizens purchase their next vehicle |rank1=Sales Associate |rank1pay=$250 |rank2=Sales Consultant |rank2pay=$375 |rank3=Sales Manager |rank3pay=$625 |rank4=Finance Manager |rank4pay=$1025 |rank5=General Manager |rank5pay=$1750}} == Location == todo cf2c3e0effdfade7e3553d175fab7dcb246041fe Fintech Employee 0 294 1963 557 2022-09-04T23:19:29Z S30Z 2 wikitext text/x-wiki {{Jobinfo10 |desc=The Fintech Employee job requires staying inside Fintech in order to make money and level up. |resp= *Manage a large tech firm *Serve customers with data and mobile solutions *Rise up to the position of CEO |rank1=Intern |rank1pay=$125 |rank2=Data Analyst |rank2pay=$185 |rank3=Senior Data Analyst |rank3pay=$310 |rank4=Manager |rank4pay=$510 |rank5=Director |rank5pay=$800 |rank6=Senior Director |rank6pay=$1150 |rank7=Vice-President |rank7pay=$1450 |rank8=Chief Financial Officer |rank8pay=$1810 |rank9=Chief Operating Officer |rank9pay=$2170 |rank10=Chief Executive Officer |rank10pay=$2500 }} == Location == todo e1b9b51242928d054a8258cf2bb8af4ce489e605 Mirage Employee 0 296 1964 559 2022-09-04T23:23:20Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Mirage Employee job requires staying inside Mirage in order to make money and level up. |resp= *Serve customers with drinks & food at Mirage Club locations around the city |rank1=Receptionist |rank1pay=$250 |rank2=Server |rank2pay=$375 |rank3=Bouncer |rank3pay=$625 |rank4=Club DJ |rank4pay=$1205 |rank5=Club Manager |rank5pay=$1750}} == Location == todo 687b87ff89be3709a44504c35ddc12fbd7535f6f File:Starblocksfront.jpg 6 1459 1966 2022-09-05T00:25:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Starblocksrear.jpg 6 1460 1967 2022-09-05T00:25:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Starblocksint.jpg 6 1461 1968 2022-09-05T00:26:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policestationoutside.jpg 6 1462 1969 2022-09-05T00:43:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policestationint1.jpg 6 1463 1970 2022-09-05T00:43:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policestationint2.jpg 6 1464 1971 2022-09-05T00:44:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policestationint3.jpg 6 1465 1972 2022-09-05T00:44:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policestationint4.jpg 6 1466 1973 2022-09-05T00:44:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Policestationint5.jpg 6 1467 1974 2022-09-05T00:44:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Police 0 297 1975 1937 2022-09-05T00:44:57Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} == Location == The police station is located near RW Bank and Sunset Performance. <gallery> File:Policestationoutside.jpg File:Policestationint1.jpg File:Policestationint2.jpg File:Policestationint3.jpg File:Policestationint4.jpg File:Policestationint5.jpg </gallery> 9d9cd897f130b1f50dd625e1a4d58aa51c1ccaad 1990 1975 2022-09-05T05:42:12Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The police station is located near RW Bank and Sunset Performance. <gallery> File:Policestationoutside.jpg File:Policestationint1.jpg File:Policestationint2.jpg File:Policestationint3.jpg File:Policestationint4.jpg File:Policestationint5.jpg </gallery> 82b1de6ba751f837c8dcd49052c9d0708539c096 Sheriff 0 315 1976 1903 2022-09-05T00:48:13Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= This job requires the Law Enforcement+ gamepass. The Sheriff does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a sheriff no matter where the player is. Sheriffs can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Sheriffs are equipped with a M1911, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Deputy |rank1pay=$240 |rank2=Sergeant |rank2pay=$350 |rank3=Captain |rank3pay=$575 |rank4=Chief Deputy |rank4pay=$950 |rank5=Sheriff |rank5pay=$1500}} == Location == Sheriffs spawn at the police station. See [[Police#Location]] for more information. 3ddc01098f6690c4b259718a9e326d38aca82f31 1977 1976 2022-09-05T00:48:56Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= This job requires the Law Enforcement+ gamepass. The Sheriff job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a sheriff no matter where the player is. Sheriffs can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Sheriffs are equipped with a M1911, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Deputy |rank1pay=$240 |rank2=Sergeant |rank2pay=$350 |rank3=Captain |rank3pay=$575 |rank4=Chief Deputy |rank4pay=$950 |rank5=Sheriff |rank5pay=$1500}} == Location == Sheriffs spawn at the police station. See [[Police#Location]] for more information. a9f5334b830b432fa847dc62ab2858225b1cc88e 1982 1977 2022-09-05T05:13:17Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= This job requires the Law Enforcement+ gamepass. The Sheriff job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a sheriff no matter where the player is. Sheriffs can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Sheriffs are equipped with a M1911, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Deputy |rank1pay=$240 |rank2=Sergeant |rank2pay=$350 |rank3=Captain |rank3pay=$575 |rank4=Chief Deputy |rank4pay=$950 |rank5=Sheriff |rank5pay=$1500}} == Location == Sheriffs spawn at the [[Police#Location|police station]]. 43ce2339784adce2e5bffd04ed23169eab63b19c Main Page 0 1 1978 1877 2022-09-05T00:50:22Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[Easter Eggs]] [[Weapons]] ===For visitors === Hello. This is a very early work in progress. [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===For editors=== [[Guides]] 30641b503050a4cead06cc3587e4e830f451081d Category:Range Runner 14 1468 1980 2022-09-05T04:25:02Z S30Z 2 Created page with "All Range Runner vehicles in Southwest Florida." wikitext text/x-wiki All Range Runner vehicles in Southwest Florida. 17417fc476d8b95c8a4eb91c6df5cdda65752edc Range Runner 0 1469 1981 2022-09-05T04:27:23Z S30Z 2 Created page with "{{Makeinfo|makename=Range Runner|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Land_Rover|rlname=Land Rover}} Range Runner is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Land_Rover Land Rover]. == Vehicles by Range Runner == You can find all vehicles made by Range Runner [[:Category:Range Runner|here]]." wikitext text/x-wiki {{Makeinfo|makename=Range Runner|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Land_Rover|rlname=Land Rover}} Range Runner is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Land_Rover Land Rover]. == Vehicles by Range Runner == You can find all vehicles made by Range Runner [[:Category:Range Runner|here]]. e2de79bf893c74d4aa409932ae0d7b7fe4aa53c7 Community Service Aide 0 322 1983 577 2022-09-05T05:38:29Z S30Z 2 wikitext text/x-wiki {{Jobinfo3 |desc= This job requires the Law Enforcement+ gamepass. The Community Service Aide job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a CSA no matter where the player is. CSAs are equipped with traffic cones and a taser. See [[Weapons]] for more info. |resp= *Maintain peace in the community, help with minor traffic incidents |rank1=Community Service Aide I |rank1pay=N/A |rank2=Community Service Aide II |rank2pay=N/A |rank3=Community Service Officer |rank3pay=N/A}} == Location == CSAs spawn at the [[Police#Location|police station]]. 7f52981df31b99f4229c987191ac61e3d2307125 StudRac Employee 0 300 1984 1932 2022-09-05T05:41:24Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' todo [[Category:Jobs]] 49757e8fa30fad83095f2d0f0aeb0a680a7d3603 2000 1984 2022-09-05T21:29:30Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' There are a total of 3 StudRac locations across Southwest Florida. Studrac 1 is the only location that can be worked at and robbed by criminals. <gallery> File:Studrac1.jpg|Studrac 1, located between the RW Bank and the [[Unemployed]] spawn. File:Studrac1int.jpg|Studrac 1 File:Studrac2.jpg|Studrac 2, located near Vorzen. File:Studrac3.jpg|Studrac 3, located near McBloxxer's. </gallery> [[Category:Jobs]] 0d9a6303c858c8622c93c101a985ede5d6690dc2 McBloxxer's Employee 0 295 1985 1933 2022-09-05T05:41:32Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' todo [[Category:Jobs]] 49757e8fa30fad83095f2d0f0aeb0a680a7d3603 1991 1985 2022-09-05T20:50:19Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The McBloxxer's Employee job requires staying inside McBloxxer's in order to make money and level up. McBloxxer's employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve customers with drinks & food at McBloxxer's locations around the city |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' McBloxxer's is located near the dealership and Dippin' Donuts. <gallery> File:Mcbloxxers.jpg File:Mcbloxxersint.jpg </gallery> == Items that can be purchased at McBloxxer's todo 42313b90b5504515e3ba04586f7c824a06d0d0da 1992 1991 2022-09-05T20:58:24Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The McBloxxer's Employee job requires staying inside McBloxxer's in order to make money and level up. McBloxxer's employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve customers with drinks & food at McBloxxer's locations around the city |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' McBloxxer's is located near the dealership and Dippin' Donuts. <gallery> File:Mcbloxxers.jpg File:Mcbloxxersint.jpg </gallery> == Items that can be purchased at McBloxxer's == {| class="wikitable" |- ! Item !! Cost |- | Iced Tea || $2 |- | Fries || $2 |- | Burger || $3 |- | Cheeseburger || $4 |- | Fish Sandwich || $5 |} 80bfb8bf0823b0b8d49482c97b1f82c7033dfb69 Dippin' Donuts Employee 0 317 1986 1934 2022-09-05T05:41:50Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' todo [[Category:Jobs]] 49757e8fa30fad83095f2d0f0aeb0a680a7d3603 Bubmart Employee 0 310 1988 1936 2022-09-05T05:42:03Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' todo [[Category:Jobs]] 669bdca4eeebc7416eafb9342bce14005e8a565a RW Bank Employee 0 298 1989 1938 2022-09-05T05:42:04Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' todo [[Category:Jobs]] 49757e8fa30fad83095f2d0f0aeb0a680a7d3603 Module:Hatnote 828 1770 2566 2022-09-05T18:18:32Z wikipedia>Nihiltres 0 Reordered helper functions (first by export status, then alphabetically) and migrated p.quote upstream from [[Module:Redirect hatnote]] (includes contributions by Tamzin and Nihiltres) Scribunto text/plain -------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules. -- -------------------------------------------------------------------------------- local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg local mArguments -- lazily initialise [[Module:Arguments]] local yesno -- lazily initialise [[Module:Yesno]] local formatLink -- lazily initialise [[Module:Format link]] ._formatLink local p = {} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end function p.defaultClasses(inline) -- Provides the default hatnote classes as a space-separated string; useful -- for hatnote-manipulation modules like [[Module:Hatnote group]]. return (inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' .. 'navigation-not-searchable' end function p.disambiguate(page, disambiguator) -- Formats a page title with a disambiguation parenthetical, -- i.e. "Example" → "Example (disambiguation)". checkType('disambiguate', 1, page, 'string') checkType('disambiguate', 2, disambiguator, 'string', true) disambiguator = disambiguator or 'disambiguation' return mw.ustring.format('%s (%s)', page, disambiguator) end function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to false. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end function p.makeWikitextError(msg, helpLink, addTrackingCategory, title) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- [[Module:Yesno]], and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') title = title or mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' ([[' .. helpLink .. '|help]])' else helpText = '' end -- Make the category text. local category if not title.isTalkPage -- Don't categorise talk pages and title.namespace ~= 2 -- Don't categorise userspace and yesno(addTrackingCategory) ~= false -- Allow opting out then category = 'Hatnote templates with errors' category = mw.ustring.format( '[[%s:%s]]', mw.site.namespaces[14].name, category ) else category = '' end return mw.ustring.format( '<strong class="error">Error: %s%s.</strong>%s', msg, helpText, category ) end local curNs = mw.title.getCurrentTitle().namespace p.missingTargetCat = --Default missing target category, exported for use in related modules ((curNs == 0) or (curNs == 14)) and 'Articles with hatnote templates targeting a nonexistent page' or nil function p.quote(title) --Wraps titles in quotation marks. If the title starts/ends with a quotation --mark, kerns that side as with {{-'}} local quotationMarks = { ["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true } local quoteLeft, quoteRight = -- Test if start/end are quotation marks quotationMarks[string.sub(title, 1, 1)], quotationMarks[string.sub(title, -1, -1)] if quoteLeft or quoteRight then title = mw.html.create("span"):wikitext(title) end if quoteLeft then title:css("padding-left", "0.15em") end if quoteRight then title:css("padding-right", "0.15em") end return '"' .. tostring(title) .. '"' end -------------------------------------------------------------------------------- -- Hatnote -- -- Produces standard hatnote text. Implements the {{hatnote}} template. -------------------------------------------------------------------------------- function p.hatnote(frame) local args = getArgs(frame) local s = args[1] if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end return p._hatnote(s, { extraclasses = args.extraclasses, selfref = args.selfref }) end function p._hatnote(s, options) checkType('_hatnote', 1, s, 'string') checkType('_hatnote', 2, options, 'table', true) options = options or {} local inline = options.inline local hatnote = mw.html.create(inline == 1 and 'span' or 'div') local extraclasses if type(options.extraclasses) == 'string' then extraclasses = options.extraclasses end hatnote :attr('role', 'note') :addClass(p.defaultClasses(inline)) :addClass(extraclasses) :addClass(options.selfref and 'selfref' or nil) :wikitext(s) return mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' } } .. tostring(hatnote) end return p 3ae1ed7094c5005ca0896395ec9a587287a0bef1 Jeff's Pizza Employee 0 1405 1995 1880 2022-09-05T21:13:15Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=N/A |rank3=Head Cook |rank3pay=N/A |rank4=Shift Manager |rank4pay=N/A |rank5=Store Manager |rank5pay=N/A}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' McBloxxer's is located just around the corner from Bublix. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at McBloxxer's == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} f551783ef0076c013eef600f9a715c4ea558e930 1996 1995 2022-09-05T21:13:34Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=N/A |rank3=Head Cook |rank3pay=N/A |rank4=Shift Manager |rank4pay=N/A |rank5=Store Manager |rank5pay=N/A}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Jeff's Pizza is located just around the corner from Bublix. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at McBloxxer's == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} 52539291d2b2a8976329c199ba7a699cd4baf26f 1997 1996 2022-09-05T21:13:54Z S30Z 2 /* Items that can be purchased at McBloxxer's */ wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=N/A |rank3=Head Cook |rank3pay=N/A |rank4=Shift Manager |rank4pay=N/A |rank5=Store Manager |rank5pay=N/A}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Jeff's Pizza is located just around the corner from Bublix. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at Jeff's Pizza == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} 7176ecd68ba3d4f2bddaa94fc0642aad2f03edc4 2001 1997 2022-09-05T21:30:50Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Jeff's Pizza is located just around the corner from Bublix. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at Jeff's Pizza == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} 112034a969b95a1bb44fd1e081bb1aa624de7710 File:Mcbloxxers.jpg 6 1470 1998 2022-09-05T21:15:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mcbloxxersint.jpg 6 1471 1999 2022-09-05T21:16:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Studrac1.jpg 6 1472 2002 2022-09-05T21:36:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Studrac1int.jpg 6 1473 2003 2022-09-05T21:36:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Studrac2.jpg 6 1474 2004 2022-09-05T21:36:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Studrac3.jpg 6 1475 2005 2022-09-05T21:37:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Jeffspizza.jpg 6 1476 2006 2022-09-05T21:37:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Jeffspizzaint.jpg 6 1477 2007 2022-09-05T21:37:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Criminal 0 292 2008 1905 2022-09-05T21:44:49Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, ONLY if both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |[[McBloxxer's Employee#Location|McBloxxer's]] |Thief |3 cash registers |80s per register |300s (5m) per register |- |[[StudRac Employee#Location|StudRac (Location 1)]] |Thief |2 cash registers |80s per register |300s (5m) per register |- |[[CVC Pharmacy Employee#Location|CVC Pharmacy]] |Grunt |2 cash registers |80s per register |300s (5m) per register |- |[[Jeff's Pizza Employee#Location|Jeff's Pizza]] |Grunt |2 cash registers |80s per register |300s (5m) per register |- |[[Bublix Employee#Location|Bublix]] |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |[[Cafe Worker#Location|Starblocks]] |Felon |2 cash registers |80s per register |300s (5m) per register |- |[[Dippin' Donuts Employee#Location|Dippin' Donuts]] |Felon |2 cash registers |80s per register |300s (5m) per register |- |[[RW Bank Employee#Location|R.W. Bank]] |Crimelord |Bank vault |300s (5m) |2000s (33m) |} d25b49790521f9afad1ca450cd62aad071cc8ac8 Jeff's Pizza Employee 0 1405 2009 2001 2022-09-05T23:52:22Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. Jeff's Pizza employees can sell food and drinks to other players however they will not earn money from doing so. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Jeff's Pizza is located just around the corner from Bublix. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at Jeff's Pizza == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} 0b1cbb77b7addde594a68bef8ae9c6d4a88da229 2034 2009 2022-09-08T02:43:26Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. Jeff's Pizza employees can sell food and drinks to other players however they will not earn money from doing so. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Jeff's Pizza is located just around the corner from [[Bublix Employee#Location|Bublix]]. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at Jeff's Pizza == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} 51c3a55576b737acf110c5fe4f29e04d5116e390 Apartment Concierge 0 290 2010 1584 2022-09-06T00:07:41Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Apartment Concierge job requires staying inside the Gulf Paradise Condos in order to make money and level up. |resp= *Provide citizens with information about available apartments/condos *Maintain vacant properties *Enforce housing rules on tenants |rank1=Assistant |rank1pay=$250 |rank2=Concierge |rank2pay=$375 |rank3=Head Concierge |rank3pay=$625 |rank4=Supervisor |rank4pay=$1025 |rank5=Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Gulf Paradise Condos is located across from Seaside. <gallery> File:GPC1.jpg File:GPC2.jpg File:GPC3.jpg File:GPC4.jpg File:GPC5.jpg File:GPC6.jpg File:GPC7.jpg File:GPC8.jpg File:GPC9.jpg </gallery> a80b82ea8b764436186f0b636cf0debbb3e11a10 2038 2010 2022-09-08T02:48:19Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Apartment Concierge job requires staying inside the Gulf Paradise Condos in order to make money and level up. |resp= *Provide citizens with information about available apartments/condos *Maintain vacant properties *Enforce housing rules on tenants |rank1=Assistant |rank1pay=$250 |rank2=Concierge |rank2pay=$375 |rank3=Head Concierge |rank3pay=$625 |rank4=Supervisor |rank4pay=$1025 |rank5=Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Gulf Paradise Condos is located across from [[Seaside Bar and Grill#Location|Seaside Bar and Grill]]. <gallery> File:GPC1.jpg File:GPC2.jpg File:GPC3.jpg File:GPC4.jpg File:GPC5.jpg File:GPC6.jpg File:GPC7.jpg File:GPC8.jpg File:GPC9.jpg </gallery> 9f51b45f2f65db3e7fffd9c1332e02f9adb5f0b0 File:GPC1.jpg 6 1478 2011 2022-09-06T00:08:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC2.jpg 6 1479 2012 2022-09-06T00:08:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC3.jpg 6 1480 2013 2022-09-06T00:08:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC4.jpg 6 1481 2014 2022-09-06T00:09:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC5.jpg 6 1482 2015 2022-09-06T00:09:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC6.jpg 6 1483 2016 2022-09-06T00:10:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC7.jpg 6 1484 2017 2022-09-06T00:10:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC8.jpg 6 1485 2018 2022-09-06T00:11:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GPC9.jpg 6 1486 2019 2022-09-06T00:13:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 JPhone 0 1487 2020 2022-09-06T22:58:50Z S30Z 2 Created page with "{{DISPLAYTITLE:jPhone}}" wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} 7373fe37a7632a5710760380969f5bf7c1b92a8d 2021 2020 2022-09-06T22:59:01Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} todo 81a79c595efa7da35a724a6b8f45ecc2287740c9 Automart Employee 0 318 2022 573 2022-09-06T23:09:38Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Automart Employee job requires staying inside Automart in order to make money and level up. |resp= *Advise and offer customers on quality auto parts |rank1=Stocker |rank1pay=$250 |rank2=Sales Associate |rank2pay=$375 |rank3=Shift Supervisor |rank3pay=$625 |rank4=Sales Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Automart is located near Bublix and Sussy's Mechanic Shop. <gallery> File:Automart1.jpg File:Automart2.jpg </gallery> eaab0c908ea108fe72ff6b75a3809d328c18ab83 2039 2022 2022-09-08T02:48:32Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Automart Employee job requires staying inside Automart in order to make money and level up. |resp= *Advise and offer customers on quality auto parts |rank1=Stocker |rank1pay=$250 |rank2=Sales Associate |rank2pay=$375 |rank3=Shift Supervisor |rank3pay=$625 |rank4=Sales Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Automart is located near [[Bublix Employee#Location|Bublix]] and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. <gallery> File:Automart1.jpg File:Automart2.jpg </gallery> c95b257fe46343a1e1eeddfb36530a1f30d1c1d0 File:Automart1.jpg 6 1488 2023 2022-09-06T23:10:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Automart2.jpg 6 1489 2024 2022-09-06T23:10:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Community Service Aide 0 322 2025 1983 2022-09-06T23:17:28Z S30Z 2 wikitext text/x-wiki {{Jobinfo3 |desc= This job requires the Law Enforcement+ gamepass. The Community Service Aide job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a CSA no matter where the player is. CSAs are equipped with traffic cones and a taser. See [[Weapons]] for more info. |resp= *Maintain peace in the community, help with minor traffic incidents |rank1=Community Service Aide I |rank1pay=$240 |rank2=Community Service Aide II |rank2pay=N/A |rank3=Community Service Officer |rank3pay=N/A}} == Location == CSAs spawn at the [[Police#Location|police station]]. 414d3c9e9bbee812ff5a0c41b3d82bdea9e0d04d Ammo refill boxes 0 1431 2026 1941 2022-09-07T20:14:06Z S30Z 2 wikitext text/x-wiki Ammo refill boxes allow [[Police|police officers]], [[Sheriff|sheriffs]] and [[Criminal|criminals]] to quickly refill their ammo by simply walking over them. <gallery> File:Ammobox1.jpg|Near the garbage cans at [[StudRac Employee#Location|Studrac 1]]. File:Ammobox2.jpg|By the garbage cans at [[McBloxxer's Employee#Location|McBloxxer's]]. File:Ammobox3.jpg|By the garbage can at [[Dippin' Donuts Employee#Location|Dippin' Donuts]]. File:Ammobox4.jpg|By the garbage cans at [[Cafe Worker#Location|Starblocks]]. File:Ammobox5.jpg|On the right corner of [[Bublix Employee#Location|Bublix]]. File:Ammobox6.jpg|In a bush next to a parked car at [[RW Bank Employee#Location|RW Bank]]. File:Ammobox7.jpg|By the lockers in the [[Police#Location|police station]]'s garage. </gallery> cd5289b5095455fd5f397212ad76d20c2ebec5e2 Cafe Worker 0 291 2027 1994 2022-09-08T02:29:59Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Starblocks is located near Fintech and the LHS Hospital. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> ==Items that can be purchased at Starblocks== {| class="wikitable" |- !Item!!Cost |- |Cakepop||$2 |- |Coffee||$2 |- |Iced Tea |$2 |- |Doughnut |$2 |- |Burrito |$2 |- |Iced Coffee||$3 |- |Pink Drink||$5 |- |Latte||$5 |- |Frappuccino |$6 |} 167a8b3000c44f6fdb6e56f7f8297c5c7c67786c 2033 2027 2022-09-08T02:36:16Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1205 |rank5=Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Starblocks is located near [[Fintech Employee#Location|Fintech]] and the [[Hospital Worker#Location|LHS Hospital]]. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> ==Items that can be purchased at Starblocks== {| class="wikitable" |- !Item!!Cost |- |Cakepop||$2 |- |Coffee||$2 |- |Iced Tea |$2 |- |Doughnut |$2 |- |Burrito |$2 |- |Iced Coffee||$3 |- |Pink Drink||$5 |- |Latte||$5 |- |Frappuccino |$6 |} 698b50dfda5aec06deb509dab9ba1a419d4a5faf Fintech Employee 0 294 2028 1963 2022-09-08T02:30:13Z S30Z 2 wikitext text/x-wiki {{Jobinfo10 |desc=The Fintech Employee job requires staying inside Fintech in order to make money and level up. |resp= *Manage a large tech firm *Serve customers with data and mobile solutions *Rise up to the position of CEO |rank1=Intern |rank1pay=$125 |rank2=Data Analyst |rank2pay=$185 |rank3=Senior Data Analyst |rank3pay=$310 |rank4=Manager |rank4pay=$510 |rank5=Director |rank5pay=$800 |rank6=Senior Director |rank6pay=$1150 |rank7=Vice-President |rank7pay=$1450 |rank8=Chief Financial Officer |rank8pay=$1810 |rank9=Chief Operating Officer |rank9pay=$2170 |rank10=Chief Executive Officer |rank10pay=$2500 }} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Fintech is located between [[Cafe Worker#Location|Starblocks]] and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. <gallery> File:Fintech1.jpg File:Fintech2.jpg File:Fintech3.jpg File:Fintech4.jpg </gallery> f0c3180e5a2be3949ab94eed3c34727b3e2e8f55 File:Fintech1.jpg 6 1490 2029 2022-09-08T02:31:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fintech2.jpg 6 1491 2030 2022-09-08T02:32:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fintech3.jpg 6 1492 2031 2022-09-08T02:32:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Fintech4.jpg 6 1493 2032 2022-09-08T02:32:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 McBloxxer's Employee 0 295 2035 1992 2022-09-08T02:44:12Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The McBloxxer's Employee job requires staying inside McBloxxer's in order to make money and level up. McBloxxer's employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve customers with drinks & food at McBloxxer's locations around the city |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' McBloxxer's is located near the [[Dealership Employee#Location|dealership]] and [[Dippin' Donuts Employee#Location|Dippin' Donuts]]. <gallery> File:Mcbloxxers.jpg File:Mcbloxxersint.jpg </gallery> == Items that can be purchased at McBloxxer's == {| class="wikitable" |- ! Item !! Cost |- | Iced Tea || $2 |- | Fries || $2 |- | Burger || $3 |- | Cheeseburger || $4 |- | Fish Sandwich || $5 |} bc67f9ade13f264db0c481b3e3bc09147010e241 Police 0 297 2036 1990 2022-09-08T02:44:57Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The police station is located near [[RW Bank Employee#Location|RW Bank]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:Policestationoutside.jpg File:Policestationint1.jpg File:Policestationint2.jpg File:Policestationint3.jpg File:Policestationint4.jpg File:Policestationint5.jpg </gallery> 26b57672541106bdb823e9cbf80d32fd49bf7c2a StudRac Employee 0 300 2037 2000 2022-09-08T02:46:24Z S30Z 2 wikitext text/x-wiki Coming Soon == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' There are a total of 3 StudRac locations across Southwest Florida. Studrac 1 is the only location that can be worked at and robbed by criminals. <gallery> File:Studrac1.jpg|Studrac 1, located between the [[RW Bank Employee#Location|RW Bank]] and the [[Unemployed]] spawn. File:Studrac1int.jpg|Studrac 1 File:Studrac2.jpg|Studrac 2, located near [[Vorzen Employee#Location|Vorzen]]. File:Studrac3.jpg|Studrac 3, located near [[McBloxxer's Employee#Location|McBloxxer's]]. </gallery> [[Category:Jobs]] f55887493a0cea1b841d97f02227592bffe107a9 Dealership Employee 0 293 2040 1979 2022-09-08T20:00:41Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Dealership Employee job requires staying inside the dealership in order to make money and level up. |resp= *Help citizens purchase their next vehicle |rank1=Sales Associate |rank1pay=$250 |rank2=Sales Consultant |rank2pay=$375 |rank3=Sales Manager |rank3pay=$625 |rank4=Finance Manager |rank4pay=$1025 |rank5=General Manager |rank5pay=$1750}} == Location == <gallery> File:Dealer1.jpg File:Dealer2.jpg File:Dealer3.jpg File:Dealer4.jpg </gallery> 75b7fda9fd7950b459861b0250a663c7f7504dc8 2045 2040 2022-09-08T20:05:56Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Dealership Employee job requires staying inside Sparrow Motorsports in order to make money and level up. |resp= *Help citizens purchase their next vehicle |rank1=Sales Associate |rank1pay=$250 |rank2=Sales Consultant |rank2pay=$375 |rank3=Sales Manager |rank3pay=$625 |rank4=Finance Manager |rank4pay=$1025 |rank5=General Manager |rank5pay=$1750}} == Location == <gallery> File:Dealer1.jpg File:Dealer2.jpg File:Dealer3.jpg File:Dealer4.jpg </gallery> a3d9bf856f26eb9b49ee3ff23bed923064f255d0 2046 2045 2022-09-08T20:07:22Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Dealership Employee job requires staying inside Sparrow Motorsports in order to make money and level up. |resp= *Help citizens purchase their next vehicle |rank1=Sales Associate |rank1pay=$250 |rank2=Sales Consultant |rank2pay=$375 |rank3=Sales Manager |rank3pay=$625 |rank4=Finance Manager |rank4pay=$1025 |rank5=General Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' <gallery> File:Dealer1.jpg File:Dealer2.jpg File:Dealer3.jpg File:Dealer4.jpg </gallery> 3ddc2f3cc7fe4943808c1899b397189abe7b7c45 File:Dealer1.jpg 6 1494 2041 2022-09-08T20:03:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dealer2.jpg 6 1495 2042 2022-09-08T20:03:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dealer3.jpg 6 1496 2043 2022-09-08T20:03:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dealer4.jpg 6 1497 2044 2022-09-08T20:04:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Bubmart Employee 0 310 2047 1988 2022-09-09T00:56:09Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Bublix Employee job requires staying inside Bublix in order to make money and level up. |resp= *Serve citizens with their food and grocery needs |rank1=Stock Clerk |rank1pay=$250 |rank2=Retail Clerk |rank2pay=$375 |rank3=Team Leader |rank3pay=$625 |rank4=Assistant Department Manager |rank4pay=$1025 |rank5=Department Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' <gallery> File:Bublix1.jpg File:Bublix2.jpg </gallery> 49dde112853f348941abec8d75dbc5ffde99a389 2048 2047 2022-09-09T01:05:02Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Bublix Employee job requires staying inside Bublix in order to make money and level up. Bublix employees can also sell groceries to other players, though they will not make money from doing so. |resp= |resp= *Serve citizens with their food and grocery needs |rank1=Stock Clerk |rank1pay=$250 |rank2=Retail Clerk |rank2pay=$375 |rank3=Team Leader |rank3pay=$625 |rank4=Assistant Department Manager |rank4pay=$1025 |rank5=Department Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' <gallery> File:Bublix1.jpg File:Bublix2.jpg </gallery> == Items that can be purchased at Bublix == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} a0ebabc882783bf133ec8c3475b6b35f6a5622cf 2049 2048 2022-09-09T01:06:29Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Bublix Employee job requires staying inside Bublix in order to make money and level up. Bublix employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Serve citizens with their food and grocery needs |rank1=Stock Clerk |rank1pay=$250 |rank2=Retail Clerk |rank2pay=$375 |rank3=Team Leader |rank3pay=$625 |rank4=Assistant Department Manager |rank4pay=$1025 |rank5=Department Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' <gallery> File:Bublix1.jpg File:Bublix2.jpg </gallery> == Items that can be purchased at Bublix == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} c9cbe3e0f47d470ea53a95c9894916ded34c13ae 2052 2049 2022-09-09T01:11:48Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Bublix Employee job requires staying inside Bublix in order to make money and level up. Bublix employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Serve citizens with their food and grocery needs |rank1=Stock Clerk |rank1pay=$250 |rank2=Retail Clerk |rank2pay=$375 |rank3=Team Leader |rank3pay=$625 |rank4=Assistant Department Manager |rank4pay=$1025 |rank5=Department Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Bublix is located near [[Vorzen Employee#Location|Vorzen]] and [[Automart Employee#Location|Automart]]. <gallery> File:Bublix1.jpg File:Bublix2.jpg </gallery> == Items that can be purchased at Bublix == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} 68158c8ff431ed181863ee653f881a02bac2e89e CVC Pharmacy Employee 0 307 2053 565 2022-09-09T01:19:58Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The CVC Pharmacy Employee job requires staying inside CVC Pharmacy in order to make money and level up. CVC Pharmacy employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Provide citizens with the best of pharmaceuticals |rank1=Retail Store Associate |rank1pay=$250 |rank2=Pharmacy Technician |rank2pay=$375 |rank3=Shift Supervisor |rank3pay=$625 |rank4=Operations Manager |rank4pay=$1025 |rank5=Retail Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' CVC Pharmacy is located near [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]] and [[Automart Employee#Location|Automart]]. <gallery> File:CVC1.jpg File:CVC2.jpg </gallery> == Items that can be purchased at CVC Pharmacy == {| class="wikitable" |- ! Item !! Cost |- | CVC Groceries || $30 |} 8db1997d6c1989d1cb240bd3b3fe9cc455c4acab File:CVC1.jpg 6 1500 2054 2022-09-09T01:21:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CVC2.jpg 6 1501 2055 2022-09-09T01:21:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Dippin' Donuts Employee 0 317 2056 1986 2022-09-09T01:28:46Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Dippin' Donuts Employee job requires staying inside Dippin' Donuts in order to make money and level up. Dippin' Donuts employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve customers donuts and drinks |rank1=Crew Member |rank1pay=$250 |rank2=Baker |rank2pay=$375 |rank3=Decorator |rank3pay=$625 |rank4=Team Lead |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' McBloxxer's is located near the [[Dealership Employee#Location|dealership]] and [[McBloxxer's Employee#Location|McBloxxer's]]. <gallery> File:Dippin.jpg File:Dippinint.jpg </gallery> == Items that can be purchased at McBloxxer's == {| class="wikitable" |- ! Item !! Cost |- | Donut || $1 |- | Coffee || $2 |- | Frozen Coffee || $5 |- | Frozen Chocolate || $5 |} f524b08c4a29ec2d5832f21342cf9e78ca11982e 2059 2056 2022-09-09T01:36:35Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Dippin' Donuts Employee job requires staying inside Dippin' Donuts in order to make money and level up. Dippin' Donuts employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve customers donuts and drinks |rank1=Crew Member |rank1pay=$250 |rank2=Baker |rank2pay=$375 |rank3=Decorator |rank3pay=$625 |rank4=Team Lead |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' McBloxxer's is located near the [[Dealership Employee#Location|dealership]] and [[McBloxxer's Employee#Location|McBloxxer's]]. <gallery> File:Dippin.jpg File:Dippinint.jpg </gallery> == Items that can be purchased at Dippin' Donuts == {| class="wikitable" |- ! Item !! Cost |- | Donut || $1 |- | Coffee || $2 |- | Frozen Coffee || $5 |- | Frozen Chocolate || $5 |} 526c2a999f9f57d44b97dc256779ac3cc52cfb93 File:Dippin.jpg 6 1502 2057 2022-09-09T01:31:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dippinint.jpg 6 1503 2058 2022-09-09T01:31:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Seaside Bar and Grill 0 308 2060 566 2022-09-09T01:45:01Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Seaside Bar and Grill job requires staying inside Seaside Bar and Grill in order to make money and level up. Seaside employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve citizens the best seafood around |rank1=Server |rank1pay=$250 |rank2=Chef |rank2pay=$375 |rank3=Head Chef |rank3pay=$625 |rank4=Supervisor |rank4pay=$1025 |rank5=General Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Seaside Bar and Grill is located near the [[Apartment Concierge#Location|Gulf Paradise Condos]]. <gallery> File:Seaside1.jpg File:Seaside2.jpg File:Seaside3.jpg </gallery> == Items that can be purchased at Seaside Bar and Grill == {| class="wikitable" |- ! Item !! Cost |- | Coffee || $2 |- | Iced Tea || $3 |- | Fries || $3 |- | Hotdog || $3 |- | Cheeseburger || $4 |- | Burger || $5 |} f53f9373b835b60c6a3b50c2ba189a6a30e9496e File:Seaside1.jpg 6 1504 2061 2022-09-09T01:46:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Seaside2.jpg 6 1505 2062 2022-09-09T01:46:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Seaside3.jpg 6 1506 2063 2022-09-09T01:46:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Vorzen Employee 0 319 2064 574 2022-09-09T01:59:01Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Vorzen Employee job requires staying inside Vorzen in order to make money and level up. Vorzen employees can also sell [[smartphones]] to other players, though they will not make money from doing so. |resp= *Sell phones to players |rank1=Sales Associate |rank1pay=$250 |rank2=Customer Service Representative |rank2pay=$375 |rank3=Merchandiser |rank3pay=$625 |rank4=Associate Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Vorzen is located near [[Bublix Employee#Location|Bublix]] and [[StudRac Employee#Location|Studrac 2]]. <gallery> File:Vorzen1.jpg File:Vorzen2.jpg </gallery> == Items that can be purchased at Vorzen == {| class="wikitable" |- ! Item !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max Gold || $50,000 |- | jPhone 12 Pro Max Platinum || $75,000 |} 51fb3c326ff41d9918dfb26cf36c64baaefa0291 2084 2064 2022-09-09T04:51:30Z S30Z 2 /* Items that can be purchased at Vorzen */ wikitext text/x-wiki {{Jobinfo5 |desc=The Vorzen Employee job requires staying inside Vorzen in order to make money and level up. Vorzen employees can also sell [[smartphones]] to other players, though they will not make money from doing so. |resp= *Sell phones to players |rank1=Sales Associate |rank1pay=$250 |rank2=Customer Service Representative |rank2pay=$375 |rank3=Merchandiser |rank3pay=$625 |rank4=Associate Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Vorzen is located near [[Bublix Employee#Location|Bublix]] and [[StudRac Employee#Location|Studrac 2]]. <gallery> File:Vorzen1.jpg File:Vorzen2.jpg </gallery> == Items that can be purchased at Vorzen == ''See [[jPhone]] for more information.'' {| class="wikitable" |- ! Item !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max Gold || $50,000 |- | jPhone 12 Pro Max Platinum || $75,000 |} c75e00199102ee76a00cefbfb6cbcbe4efa894db File:Vorzen1.jpg 6 1507 2065 2022-09-09T02:00:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Vorzen2.jpg 6 1508 2066 2022-09-09T02:01:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Smartphones 0 1509 2067 2022-09-09T02:01:40Z S30Z 2 Redirected page to [[JPhone]] wikitext text/x-wiki #REDIRECT [[jPhone]] dd2b0ff04cc09ba0d9eccffc063360d46283e943 JPhone 0 1487 2068 2021 2022-09-09T03:32:02Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. The jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]], settings and phone app. bad9cee9c3c2253810935a0fcee4a19a931093d7 2070 2068 2022-09-09T03:34:17Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} [[File:Jphone1.png|thumb|Home screen on a jPhone]] The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. The jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]], settings and phone app. 0fe7873e7effa27c9f954d282e24316a2d5ecdf1 2071 2070 2022-09-09T03:37:37Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} [[File:Jphone1.png|thumb|Home screen on a jPhone]] The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. The jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]] app, settings app and phone app. ==Prices== {| class="wikitable" |+ |Type |Cost |- |jPhone 12 |$829 |- |jPhone 12 Pro Max |$1,199 |} ==Gallery== 653ec6ea5c1bc008729812b13aae95a0cae12f16 2073 2071 2022-09-09T03:46:37Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} [[File:Jphone1.png|thumb|Home screen on a jPhone]] The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. The jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]] app, settings app and phone app. There also exists a limited Raft variant of the jPhone 12 Pro Max. It was only available for around 7 days and had a price tag of $25,000,000. It has Raft18's Discord profile picture on the back as well as a unique particle effect. ==jPhone Prices== {| class="wikitable" |- ! Type !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max (Gold) || $50,000 |- | jPhone 12 Pro Max (Platinum) || $75,000 |- | jPhone 12 Pro Max (Raft) || $25,000,000 |} ==Gallery== <gallery> File:Jphone2.jpg|"Coming Soon" screen seen when trying to launch the Rift, Settings and Phone apps. File:Jphone3.jpg|Lockscreen File:Jphone4.jpg|Two players using Raft jPhones. File:Jphone5.jpg|Raft jPhone </gallery> 5c371b58749ee4f63b797fb44ad4556a3b873475 2075 2073 2022-09-09T03:49:14Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} [[File:Jphone1.png|thumb|Home screen on a jPhone]] The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. The jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]] app, settings app and phone app. There also exists a limited Raft variant of the jPhone 12 Pro Max. It was only available for around 7 days and had a price tag of $25,000,000. It has Raft18's Discord profile picture on the back as well as a unique particle effect. ==jPhone Prices== {| class="wikitable" |- ! Type !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max (Gold) || $50,000 |- | jPhone 12 Pro Max (Platinum) || $75,000 |- | jPhone 12 Pro Max (Raft) || $25,000,000 |} ==Gallery== <gallery> File:Jphone2.jpg|"Coming Soon" screen seen when trying to launch the Rift, Settings and Phone apps. File:Jphone3.jpg|Lockscreen </gallery> 2045ea1f4f0ced3d629fa85bd1b605d1ef82e642 2078 2075 2022-09-09T04:36:23Z S30Z 2 /* Gallery */ wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} [[File:Jphone1.png|thumb|Home screen on a jPhone]] The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. The jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]] app, settings app and phone app. There also exists a limited Raft variant of the jPhone 12 Pro Max. It was only available for around 7 days and had a price tag of $25,000,000. It has Raft18's Discord profile picture on the back as well as a unique particle effect. ==jPhone Prices== {| class="wikitable" |- ! Type !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max (Gold) || $50,000 |- | jPhone 12 Pro Max (Platinum) || $75,000 |- | jPhone 12 Pro Max (Raft) || $25,000,000 |} ==Gallery== <gallery> File:Jphone2.jpg|"Coming Soon" screen seen when trying to launch the Rift, Settings and Phone apps. File:Jphone3.jpg|Lockscreen File:Jphone4.jpg|Raft phone File:Jphone5.jpg </gallery> 7e7d42cfab1452a2082ea2d11505a7e392eb748a File:Jphone1.png 6 1510 2069 2022-09-09T03:33:46Z S30Z 2 wikitext text/x-wiki 3 77de68daecd823babbb58edb1c8e14d7106e83bb File:Jphone2.jpg 6 1511 2072 2022-09-09T03:45:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Jphone3.jpg 6 1512 2074 2022-09-09T03:46:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Jphone4.jpg 6 1513 2076 2022-09-09T04:34:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2080 2076 2022-09-09T04:36:47Z S30Z 2 wikitext text/x-wiki thanks to poopmeat15 49598c5bafa0a864e95c120dfc0d30ad21073ed0 File:Jphone5.jpg 6 1514 2077 2022-09-09T04:34:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2079 2077 2022-09-09T04:36:44Z S30Z 2 wikitext text/x-wiki thanks to poopmeat15 49598c5bafa0a864e95c120dfc0d30ad21073ed0 Phone 0 1515 2081 2022-09-09T04:38:03Z S30Z 2 Redirected page to [[JPhone]] wikitext text/x-wiki #REDIRECT [[jPhone]] dd2b0ff04cc09ba0d9eccffc063360d46283e943 Phones 0 1516 2082 2022-09-09T04:38:19Z S30Z 2 Redirected page to [[JPhone]] wikitext text/x-wiki #REDIRECT [[jPhone]] dd2b0ff04cc09ba0d9eccffc063360d46283e943 Iphone 0 1517 2083 2022-09-09T04:38:43Z S30Z 2 Redirected page to [[JPhone]] wikitext text/x-wiki #REDIRECT [[jPhone]] dd2b0ff04cc09ba0d9eccffc063360d46283e943 Template:Jobinfo3 10 400 2085 1662 2022-09-09T04:54:41Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. ''' Job Responsibilities ''' ''(in-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 3 positions (Community Service)" } </templatedata> </noinclude> 2eb0e3b1d79786f2458ed74105fa7e7db0f0f7ad Template:Jobinfo4 10 399 2086 1660 2022-09-09T04:54:52Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(in-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 4 positions (Rift)" } </templatedata> </noinclude> 33d7e08ecc0b0a0533633099d1d3dd3d4fcd74c7 Template:Jobinfo5 10 396 2087 1661 2022-09-09T04:55:03Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(in-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true }, "rank5": { "label": "Position 5 Name", "type": "string", "required": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "required": true } }, "description": "Job page template" } </templatedata> </noinclude> a6eb66632f0ae6cd7632f2ae39b46af66229a7bc Template:Jobinfo10 10 398 2088 1659 2022-09-09T04:55:14Z S30Z 2 wikitext text/x-wiki {{{desc}}} All job ranks and pay rates are shown below, with each rank in order of least to greatest, starting with the lowest rank at the top. Promotion times cannot be accurately estimated due to many uncontrollable factors that influence promotion speed. '''Job Responsibilities''' ''(in-game description)'' {{{resp}}} {| class="wikitable" !<big>Rank</big> !<big>Pay</big> |- |{{{rank1}}} |{{{rank1pay}}} |- |{{{rank2}}} |{{{rank2pay}}} |- |{{{rank3}}} |{{{rank3pay}}} |- |{{{rank4}}} |{{{rank4pay}}} |- |{{{rank5}}} |{{{rank5pay}}} |- |{{{rank6}}} |{{{rank6pay}}} |- |{{{rank7}}} |{{{rank7pay}}} |- |{{{rank8}}} |{{{rank8pay}}} |- |{{{rank9}}} |{{{rank9pay}}} |- |{{{rank10}}} |{{{rank10pay}}} |} <includeonly> [[Category:Jobs]] </includeonly> <noinclude> <templatedata> { "params": { "desc": { "label": "Job description", "type": "string", "required": true }, "resp": { "label": "Job responsibilities as seen ingame", "type": "string", "required": true }, "rank1": { "label": "Position 1 Name", "example": "Assistant", "type": "string", "required": true }, "rank1pay": { "label": "Position 1 Pay", "example": "$250", "type": "string", "required": true }, "rank2": { "label": "Position 2 Name", "example": "Concierge", "type": "string", "required": true }, "rank2pay": { "label": "Position 2 Pay", "type": "string", "required": true }, "rank3": { "label": "Position 3 Name", "example": "Head Concierge", "type": "string", "required": true }, "rank3pay": { "label": "Position 3 Pay", "type": "string", "required": true }, "rank4": { "label": "Position 4 Name", "example": "Supervisor", "type": "string", "required": true }, "rank4pay": { "label": "Position 4 Pay", "type": "string", "required": true }, "rank5": { "label": "Position 5 Name", "type": "string", "required": true }, "rank5pay": { "label": "Position 5 Pay", "type": "string", "required": true }, "rank6": { "label": "Position 6 Name", "type": "string", "required": true }, "rank6pay": { "label": "Position 6 Pay", "type": "string", "required": true }, "rank7": { "label": "Position 7 Name", "type": "string", "required": true }, "rank7pay": { "label": "Position 7 Pay", "type": "string", "required": true }, "rank8": { "label": "Position 8 Name", "type": "string", "required": true }, "rank8pay": { "label": "Position 8 Pay", "type": "string", "required": true }, "rank9": { "label": "Position 9 Name", "type": "string", "required": true }, "rank9pay": { "label": "Position 9 Pay", "type": "string", "required": true }, "rank10": { "label": "Position 10 Name", "type": "string", "required": true }, "rank10pay": { "label": "Position 10 Pay", "type": "string", "required": true } }, "description": "Job page template for jobs with 10 positions (Fintech)" } </templatedata> </noinclude> 90b9d4f88a4980444a941517099d38b24ff79959 Help Wanted 0 1399 2089 1878 2022-09-09T08:16:55Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed have images but no page. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2021 Stinger ACS 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series fabcba398d5e33c28a871e92e449ac1b86fd8f7d 2090 2089 2022-09-09T08:19:42Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed have images but no page. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2021 Stinger ACS 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 2021 Hayunai Sonata N-Line 4910d70b62b11e5829ea9583319576f85a84c3b5 2091 2090 2022-09-09T08:21:16Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed have images but no page. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2021 Stinger ACS 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 2021 Hayunai Sonata N-Line 1982 AMC Delorean de1e09ba5a5d2f9394d090fb632e3b7e09f9599e 2092 2091 2022-09-09T08:25:32Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed have images but no page. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2021 Stinger ACS 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 2021 Hayunai Sonata N-Line 1982 AMC Delorean 2016 Pohrse 911 R 7d433749da968edf7fbd4baceac185cda244a3fd 2093 2092 2022-09-09T08:29:22Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed have images but no page. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2021 Stinger ACS 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 2021 Hayunai Sonata N-Line 1982 AMC Delorean 2016 Pohrse 911 R ca240a04832610681aca9aefb403999f5bb95ac2 2094 2093 2022-09-09T08:53:50Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2021 Stinger ACS 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 2021 Hayunai Sonata N-Line 1982 AMC Delorean 2016 Pohrse 911 R ed9ef766ad3821aad01539c7e549e29629f853a5 Mirage Employee 0 296 2095 1964 2022-09-09T22:10:03Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Mirage Employee job requires staying inside Mirage in order to make money and level up. |resp= *Serve customers with drinks & food at Mirage Club locations around the city |rank1=Receptionist |rank1pay=$250 |rank2=Server |rank2pay=$375 |rank3=Bouncer |rank3pay=$625 |rank4=Club DJ |rank4pay=$1025 |rank5=Club Manager |rank5pay=$1750}} == Location == == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Mirage is located near [[Dealership Employee#Location|Sparrow Motorsports]]. <gallery> File:Mirage1.jpg File:Mirage2.jpg File:Mirage3.jpg File:Mirage4.jpg </gallery> a2b628de4ed2dc08b387a013fba0f1aa70331b0f 2100 2095 2022-09-09T22:17:05Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Mirage Employee job requires staying inside Mirage in order to make money and level up. Mirage employees can also sell food to other players, though they will not make money from doing so. |resp= *Serve customers with drinks & food at Mirage Club locations around the city |rank1=Receptionist |rank1pay=$250 |rank2=Server |rank2pay=$375 |rank3=Bouncer |rank3pay=$625 |rank4=Club DJ |rank4pay=$1025 |rank5=Club Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Mirage is located near [[Dealership Employee#Location|Sparrow Motorsports]]. <gallery> File:Mirage1.jpg File:Mirage2.jpg File:Mirage3.jpg File:Mirage4.jpg </gallery> == Items that can be purchased at Mirage == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Lemonade || $3 |- | Hotdog || $3 |- | Burger || $5 |} f4a4092889fd06e6d6e88ab37e3a35d025f87ff9 File:Mirage1.jpg 6 1518 2096 2022-09-09T22:12:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mirage2.jpg 6 1519 2097 2022-09-09T22:12:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mirage3.jpg 6 1520 2098 2022-09-09T22:12:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mirage4.jpg 6 1521 2099 2022-09-09T22:12:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 StudRac Employee 0 300 2101 2037 2022-09-09T22:32:56Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The StudRac Employee job requires staying inside StudRac 1 in order to make money and level up. StudRac employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Assist shoppers with their shopping needs *Manage the sales of goods |rank1=Stocker |rank1pay=$250 |rank2=Clerk |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1025 |rank5=Franchise Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' There are a total of 3 StudRac locations across Southwest Florida. Studrac 1 is the only location that can be worked at and robbed by criminals. <gallery> File:Studrac1.jpg|Studrac 1, located between the [[RW Bank Employee#Location|RW Bank]] and the [[Unemployed]] spawn. File:Studrac1int.jpg|Studrac 1 File:Studrac2.jpg|Studrac 2, located near [[Vorzen Employee#Location|Vorzen]]. File:Studrac3.jpg|Studrac 3, located near [[McBloxxer's Employee#Location|McBloxxer's]]. </gallery> == Items that can be purchased at CVC Pharmacy == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} 4b337355dd4d865d8a8929352c8074af76a141eb RW Bank Employee 0 298 2102 1989 2022-09-09T22:41:24Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The RW Bank Employee job requires staying inside the RW Bank in order to make money and level up. |resp= *Manage a bank branch *Serve citizens with their banking needs *Provide financial advice |rank1=Teller |rank1pay=$250 |rank2=Representative |rank2pay=$375 |rank3=Auditor |rank3pay=$625 |rank4=Loan Officer |rank4pay=$1025 |rank5=Branch Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The RW Bank is located near the [[Police#Location|police station]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:RWBank1.jpg File:RWBank2.jpg File:RWBank3.jpg File:RWBank4.jpg </gallery> a4f1c47914f8bf5ca0907fcb38e8bc29a2a85095 File:RWBank1.jpg 6 1522 2103 2022-09-09T22:43:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RWBank2.jpg 6 1523 2104 2022-09-09T22:44:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RWBank3.jpg 6 1524 2105 2022-09-09T22:44:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RWBank4.jpg 6 1525 2106 2022-09-09T22:44:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ACS Front.png 6 1526 2107 2022-09-09T23:48:34Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ACS Rear.png 6 1527 2108 2022-09-09T23:49:20Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ACS Tree.png 6 1528 2109 2022-09-09T23:50:19Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2120 2109 2022-09-10T00:31:40Z HPtheamazing 9 HPtheamazing uploaded a new version of [[File:ACS Tree.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Sunset Performance 0 321 2110 576 2022-09-09T23:57:04Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Sunset Performance job requires staying inside Sunset Performance in order to make money and level up. |resp= *Help customers modify and tune their vehicles |rank1=Shop Intern |rank1pay=$250 |rank2=Technician |rank2pay=$375 |rank3=Master Technician |rank3pay=$625 |rank4=Shop Manager |rank4pay=$1025 |rank5=Shop Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Sunset Performance is located near the [[RW Bank Employee#Location|RW Bank]]. <gallery> File:Sunset1.jpg File:Sunset2.jpg </gallery> d200afb05f018059f18aa7c99d55399b5750ef9b 2111 2110 2022-09-10T00:07:20Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Sunset Performance job requires staying inside Sunset Performance in order to make money and level up. |resp= *Help customers modify and tune their vehicles |rank1=Shop Intern |rank1pay=$250 |rank2=Technician |rank2pay=$375 |rank3=Master Technician |rank3pay=$625 |rank4=Shop Manager |rank4pay=$1025 |rank5=Shop Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Sunset Performance is located near the [[RW Bank Employee#Location|RW Bank]] and the [[Firefighter#Location|fire station]]. <gallery> File:Sunset1.jpg File:Sunset2.jpg </gallery> 5151e1d375049f7f5a1891fcc3bbcffc7079747b File:Sunset1.jpg 6 1529 2112 2022-09-10T00:08:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sunset2.jpg 6 1530 2113 2022-09-10T00:08:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Firefighter 0 313 2114 569 2022-09-10T00:20:15Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Firefighter job requires extinguishing fires around Southwest Florida in order to make money and level up. Firefighters will be automatically notified when a fire starts and a location marker will be added to their map to help them find it. Firefighters are equipped with traffic cones. A firefighter's income depends on their rank and time spent when extinguishing a fire. They will only be paid if the fire has been successfully extinguished. |resp= *Fight building fires throughout the city |rank1=Fire Cadet |rank1pay=N/A |rank2=Firefighter |rank2pay=N/A |rank3=Lieutenant |rank3pay=N/A |rank4=Captain |rank4pay=N/A |rank5=Fire Chief |rank5pay=N/A}} 0157fba003d4a9b5e08525677fa78deb31d8ff61 2123 2114 2022-09-10T00:34:03Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Firefighter job requires extinguishing fires around Southwest Florida in order to make money and level up. Firefighters will be automatically notified when a fire starts and a location marker will be added to their map to help them find it. Firefighters are equipped with traffic cones. A firefighter's income depends on their rank and time spent when extinguishing a fire. They will only be paid if the fire has been successfully extinguished. |resp= *Fight building fires throughout the city |rank1=Fire Cadet |rank1pay=N/A |rank2=Firefighter |rank2pay=N/A |rank3=Lieutenant |rank3pay=N/A |rank4=Captain |rank4pay=N/A |rank5=Fire Chief |rank5pay=N/A}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The fire station is located near the [[RW Bank Employee#Location|RW Bank]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:FStation1.jpg File:FStation2.jpg File:FStation3.jpg File:FStation4.jpg|Firefighters can change their uniform and equip/remove an optional helmet and mask by clicking on them here. File:FStation5.jpg </gallery> == Gallery == <gallery> File:FFighter1.jpg File:FFighter2.jpg File:FFighter3.jpg File:FFighter4.jpg File:FFighter5.jpg File:FFighter6.jpg </gallery> 9c4454d8eba47c210ec39796428b259bd9b5feef 2129 2123 2022-09-10T00:35:42Z S30Z 2 /* Gallery */ wikitext text/x-wiki {{Jobinfo5 |desc= The Firefighter job requires extinguishing fires around Southwest Florida in order to make money and level up. Firefighters will be automatically notified when a fire starts and a location marker will be added to their map to help them find it. Firefighters are equipped with traffic cones. A firefighter's income depends on their rank and time spent when extinguishing a fire. They will only be paid if the fire has been successfully extinguished. |resp= *Fight building fires throughout the city |rank1=Fire Cadet |rank1pay=N/A |rank2=Firefighter |rank2pay=N/A |rank3=Lieutenant |rank3pay=N/A |rank4=Captain |rank4pay=N/A |rank5=Fire Chief |rank5pay=N/A}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The fire station is located near the [[RW Bank Employee#Location|RW Bank]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:FStation1.jpg File:FStation2.jpg File:FStation3.jpg File:FStation4.jpg|Firefighters can change their uniform and equip/remove an optional helmet and mask by clicking on them here. File:FStation5.jpg </gallery> == Gallery == <gallery> File:FFighter1.jpg File:FFighter2.jpg File:FFighter3.jpg File:FFighter4.jpg File:FFighter5.jpg File:FFighter6.jpg File:FLocMarker.jpg|Fire location marker </gallery> e167bb47e54887a8c89574a3ac3b8e0bee14590d File:FStation1.jpg 6 1531 2115 2022-09-10T00:30:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FStation2.jpg 6 1532 2116 2022-09-10T00:30:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FStation3.jpg 6 1533 2117 2022-09-10T00:30:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FStation4.jpg 6 1534 2118 2022-09-10T00:30:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FStation5.jpg 6 1535 2119 2022-09-10T00:30:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FFighter1.jpg 6 1536 2121 2022-09-10T00:33:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FFighter2.jpg 6 1537 2122 2022-09-10T00:33:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FFighter3.jpg 6 1538 2124 2022-09-10T00:34:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FFighter4.jpg 6 1539 2125 2022-09-10T00:34:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FFighter5.jpg 6 1540 2126 2022-09-10T00:34:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FFighter6.jpg 6 1541 2127 2022-09-10T00:34:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FLocMarker.jpg 6 1542 2128 2022-09-10T00:35:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Stinger ACS 0 1543 2130 2022-09-10T00:37:22Z HPtheamazing 9 Created page with "{{Carinfo|name=2021 Stinger ACS|image=ACS Front.png|make=Stinger|type=Coupe|price=Free|avail=Given to players via code|rllink=https://www.secret-classics.com/en/singer-acs/|rlname=Porsche Singer ACS|limited=1|electric=0}} The Stinger ACS was added in the holiday update on December 24, 2021 and was available to given to players who entered the code "HOLIDAY2021" before it expired. == Stats == The ACS seats 2 people and has a maximum fuel capacity of 32.9 gallons {{Stock..." wikitext text/x-wiki {{Carinfo|name=2021 Stinger ACS|image=ACS Front.png|make=Stinger|type=Coupe|price=Free|avail=Given to players via code|rllink=https://www.secret-classics.com/en/singer-acs/|rlname=Porsche Singer ACS|limited=1|electric=0}} The Stinger ACS was added in the holiday update on December 24, 2021 and was available to given to players who entered the code "HOLIDAY2021" before it expired. == Stats == The ACS seats 2 people and has a maximum fuel capacity of 32.9 gallons {{Stockstats|hpval=473|tqval=390|whval=3,751|spdval=124|drv=RWD}}{{Maxstats|hpval=1,008|tqval=876|whval=3,250|spdval=153}} == Gallery == [[File:ACS Rear.png|left|thumb|Rear view of the Stinger ACS]] [[File:ACS Tree.png|center|thumb|The tree showcased on the Stinger ACS is removable via paint options at the Dealership, Sussy's, and Sunset Performance]] 9422c005289e92b01e8145f6b38b3b8fe93d7022 2131 2130 2022-09-10T00:38:19Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2021 Stinger ACS|image=ACS Front.png|make=Stinger|type=Coupe|price=Free|avail=Given to players via code|rllink=https://www.secret-classics.com/en/singer-acs/|rlname=Porsche Singer ACS|limited=1|electric=0}} The Stinger ACS was added in the holiday update on December 24, 2021 and was available to players who entered the code "HOLIDAY2021" before it expired. == Stats == The ACS seats 2 people and has a maximum fuel capacity of 32.9 gallons {{Stockstats|hpval=473|tqval=390|whval=3,751|spdval=124|drv=RWD}}{{Maxstats|hpval=1,008|tqval=876|whval=3,250|spdval=153}} == Gallery == [[File:ACS Rear.png|left|thumb|Rear view of the Stinger ACS]] [[File:ACS Tree.png|center|thumb|The tree showcased on the Stinger ACS is removable via paint options at the Dealership, Sussy's, and Sunset Performance]] e3986a0923823638debc25565cd8fa0203a9b2a1 2132 2131 2022-09-10T00:39:50Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2021 Stinger ACS|image=ACS Front.png|make=Stinger|type=Coupe|price=Free|avail=Given to players via code|rllink=https://www.secret-classics.com/en/singer-acs/|rlname=Porsche Singer ACS|limited=1|electric=0}} The Stinger ACS was added in the holiday update on December 24, 2021 and was available to players who entered the code "HOLIDAY2021" before it expired. As a code car, it does not take up space in the player's inventory == Stats == The ACS seats 2 people and has a maximum fuel capacity of 32.9 gallons {{Stockstats|hpval=473|tqval=390|whval=3,751|spdval=124|drv=RWD}}{{Maxstats|hpval=1,008|tqval=876|whval=3,250|spdval=153}} == Gallery == [[File:ACS Rear.png|left|thumb|Rear view of the Stinger ACS]] [[File:ACS Tree.png|center|thumb|The tree showcased on the Stinger ACS is removable via paint options at the Dealership, Sussy's, and Sunset Performance]] 2b49feeda3ecb01748a82a2a381c9a3d4b1fd39d 2146 2132 2022-09-10T00:51:23Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Stinger ACS|image=ACS Front.png|make=Stinger|type=Coupe|price=Free|avail=Given to players via code|rllink=https://www.secret-classics.com/en/singer-acs/|rlname=Singer ACS|limited=1|electric=0}} The [[Stinger]] ACS was added in the holiday update on December 24, 2021 and was available to players who entered the code "HOLIDAY2021" before it expired. As a code car, it does not take up space in the player's inventory. == Stats == The ACS seats 2 people and has a maximum fuel capacity of 32.9 gallons {{Stockstats|hpval=473|tqval=390|whval=3,751|spdval=124|drv=RWD}}{{Maxstats|hpval=1,008|tqval=876|whval=3,250|spdval=153}} == Gallery == [[File:ACS Rear.png|left|thumb|Rear view of the Stinger ACS]] [[File:ACS Tree.png|center|thumb|The tree showcased on the Stinger ACS is removable via paint options at the Dealership, Sussy's, and Sunset Performance]] 8e0525cc05c807ddc2ea06d4def247990e725163 Community Service Aide 0 322 2133 2025 2022-09-10T00:43:24Z S30Z 2 wikitext text/x-wiki {{Jobinfo3 |desc= This job requires the Law Enforcement+ gamepass. The Community Service Aide job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a CSA no matter where the player is. CSAs are equipped with traffic cones and a taser. See [[Weapons]] for more info. |resp= *Maintain peace in the community, help with minor traffic incidents |rank1=Community Service Aide I |rank1pay=$240 |rank2=Community Service Aide II |rank2pay=N/A |rank3=Community Service Officer |rank3pay=N/A}} == Location == CSAs spawn at the [[Police#Location|police station]]. == Gallery == <gallery> File:CSAUni1.jpg File:CSAUni2.jpg </gallery> d73a95ddf9fea8bf005a2f60fe6c84b581451222 Police 0 297 2134 2036 2022-09-10T00:44:09Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The police station is located near [[RW Bank Employee#Location|RW Bank]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:Policestationoutside.jpg File:Policestationint1.jpg File:Policestationint2.jpg File:Policestationint3.jpg File:Policestationint4.jpg File:Policestationint5.jpg </gallery> == Gallery == <gallery> File:PoliceUni1.jpg File:PoliceUni2.jpg </gallery> 85544c316eeb923c9091bab104edc53fa63aa5ca Sheriff 0 315 2135 1982 2022-09-10T00:44:48Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= This job requires the Law Enforcement+ gamepass. The Sheriff job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a sheriff no matter where the player is. Sheriffs can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Sheriffs are equipped with a M1911, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Deputy |rank1pay=$240 |rank2=Sergeant |rank2pay=$350 |rank3=Captain |rank3pay=$575 |rank4=Chief Deputy |rank4pay=$950 |rank5=Sheriff |rank5pay=$1500}} == Location == Sheriffs spawn at the [[Police#Location|police station]]. == Gallery == <gallery> File:SheriffUni1.jpg File:SheriffUni2.jpg </gallery> f7e6137096e31de1048dbfe2781dff9e4cedf54c File:CSAUni1.jpg 6 1544 2136 2022-09-10T00:45:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CSAUni2.jpg 6 1545 2137 2022-09-10T00:46:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PoliceUni1.jpg 6 1546 2138 2022-09-10T00:47:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PoliceUni2.jpg 6 1547 2139 2022-09-10T00:47:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SheriffUni1.jpg 6 1548 2140 2022-09-10T00:47:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2144 2140 2022-09-10T00:49:10Z S30Z 2 S30Z moved page [[File:SherriffUni1.jpg]] to [[File:SheriffUni1.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SheriffUni2.jpg 6 1549 2141 2022-09-10T00:47:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2142 2141 2022-09-10T00:48:36Z S30Z 2 S30Z moved page [[File:SherriffUni2.jpg]] to [[File:SheriffUni2.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SherriffUni2.jpg 6 1550 2143 2022-09-10T00:48:36Z S30Z 2 S30Z moved page [[File:SherriffUni2.jpg]] to [[File:SheriffUni2.jpg]] wikitext text/x-wiki #REDIRECT [[File:SheriffUni2.jpg]] f538a97149e2abfe2ba5e66870763a3347370bc2 File:SherriffUni1.jpg 6 1551 2145 2022-09-10T00:49:10Z S30Z 2 S30Z moved page [[File:SherriffUni1.jpg]] to [[File:SheriffUni1.jpg]] wikitext text/x-wiki #REDIRECT [[File:SheriffUni1.jpg]] f61bccf438c7fc02226eaf3572c9347b5383863f Category:Stinger 14 1552 2147 2022-09-10T00:51:38Z S30Z 2 Created page with "All Stinger vehicles in Southwest Florida." wikitext text/x-wiki All Stinger vehicles in Southwest Florida. 263665991e5147d5fafe9f111f32efb7cb18b639 Stinger 0 1553 2148 2022-09-10T00:54:43Z S30Z 2 Created page with "{{Makeinfo|makename=Stinger|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Singer_Vehicle_Design|rlname=Singer Vehicle Design}} Stinger is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Singer_Vehicle_Design Singer Vehicle Design]. == Vehicles by Stinger == You can find all vehicles made by Stinger [[:Category:Stinger|here]]." wikitext text/x-wiki {{Makeinfo|makename=Stinger|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Singer_Vehicle_Design|rlname=Singer Vehicle Design}} Stinger is a fictional car company in Southwest Florida. It is based on [https://en.wikipedia.org/wiki/Singer_Vehicle_Design Singer Vehicle Design]. == Vehicles by Stinger == You can find all vehicles made by Stinger [[:Category:Stinger|here]]. 89cb71138154d9077e735723dbc0bd7d9940b6dd Help Wanted 0 1399 2149 2094 2022-09-10T00:55:59Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2017 Dodje Viper ACR Extreme 2018 Chavy Camaro ZL1 "The Exorcist" 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 2021 Hayunai Sonata N-Line 1982 AMC Delorean 2016 Pohrse 911 R fa9ca9c14600277fe6b64b1d5b3d8c7958d77583 Sussy's Mechanic Shop 0 323 2150 578 2022-09-10T01:11:45Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Sussy's Mechanic Shop job requires staying inside Sussy's Mechanic Shop in order to make money and level up. |resp= *Perform oil changes, alignments and more |rank1=Shop Intern |rank1pay=$250 |rank2=Technician |rank2pay=$375 |rank3=Master Technician |rank3pay=$625 |rank4=Shop Manager |rank4pay=$1025 |rank5=Shop Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Sussy's Mechanic Shop is located near [[Automart Employee#Location|Automart]]. <gallery> File:Sussy1.jpg File:Sussy2.jpg </gallery> 0e88f45dd0d1fe0127ae5aeda861b32735b3b69f File:Sussy1.jpg 6 1554 2151 2022-09-10T01:12:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sussy2.jpg 6 1555 2152 2022-09-10T01:12:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Waterpark Employee 0 320 2153 575 2022-09-10T01:16:50Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Waterpark Employee job requires staying at Aqualand in order to make money and level up. |resp= *Maintain the waterpark and serve food and drinks |rank1=Waterpark Attendant |rank1pay=$250 |rank2=Lifeguard |rank2pay=$375 |rank3=Maintenance Manager |rank3pay=$625 |rank4=Associate Park Manager |rank4pay=$1025 |rank5=Park Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Aqualand is located a few blocks away from the [[Police#Location|police station]]. <gallery> File:Aqualand1.jpg File:Aqualand2.jpg </gallery> 051292d563c95ffeb685cbfaedbf216d53775cb7 File:Aqualand1.jpg 6 1556 2154 2022-09-10T01:21:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Waterpark Employee 0 320 2155 2153 2022-09-10T01:25:10Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Waterpark Employee job requires staying at Aqualand in order to make money and level up. |resp= *Maintain the waterpark and serve food and drinks |rank1=Waterpark Attendant |rank1pay=$250 |rank2=Lifeguard |rank2pay=$375 |rank3=Maintenance Manager |rank3pay=$625 |rank4=Associate Park Manager |rank4pay=$1025 |rank5=Park Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Aqualand is located a few blocks away from the [[Police#Location|police station]]. <gallery> File:Aqualand1.jpg </gallery> == Items that can be purchased at Aqualand == {| class="wikitable" |- ! Item !! Cost |- | Soda || $2 |- | Lemonade || $3 |- | Hotdog || $3 |- | Burger || $5 |} 16b5fe6aedb11d937983725254c2ae6c0d3ac7a8 Hospital Worker 0 312 2156 568 2022-09-10T01:31:57Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Hospital Worker job requires staying inside the LHS Hospital in order to make money and level up. |resp= *Provide healthcare to citizens |rank1=Intern |rank1pay=$220 |rank2=Resident |rank2pay=$325 |rank3=Nurse |rank3pay=$525 |rank4=Attending Physician |rank4pay=$875 |rank5=Medical Director |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' LHS Hospital is located near [[Fintech Employee#Location|Fintech]] and [[Cafe Worker#Location|Starblocks]]. <gallery> </gallery> == Gallery == <gallery> </gallery> d905a848f69f3fb329fe4942fdf4c7e862ff5f99 2157 2156 2022-09-10T01:32:56Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Hospital Worker job requires staying inside the LHS Hospital in order to make money and level up. Hospital Workers are equipped with a first aid kit which can be used to heal wounded players. |resp= *Provide healthcare to citizens |rank1=Intern |rank1pay=$220 |rank2=Resident |rank2pay=$325 |rank3=Nurse |rank3pay=$525 |rank4=Attending Physician |rank4pay=$875 |rank5=Medical Director |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' LHS Hospital is located near [[Fintech Employee#Location|Fintech]] and [[Cafe Worker#Location|Starblocks]]. <gallery> </gallery> == Gallery == <gallery> </gallery> fda53bb29ff19e6cdd78f5e01d9c743fce8023f9 2158 2157 2022-09-10T01:38:33Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Hospital Worker job requires staying inside the LHS Hospital in order to make money and level up. Hospital Workers are equipped with a first aid kit which can be used to heal wounded players. |resp= *Provide healthcare to citizens |rank1=Intern |rank1pay=$220 |rank2=Resident |rank2pay=$325 |rank3=Nurse |rank3pay=$525 |rank4=Attending Physician |rank4pay=$875 |rank5=Medical Director |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' LHS Hospital is located near [[Fintech Employee#Location|Fintech]] and [[Cafe Worker#Location|Starblocks]]. <gallery> File:LHS1.jpg File:LHS2.jpg File:LHS3.jpg File:LHS4.jpg </gallery> == Gallery == <gallery> File:HWUni1.jpg File:HWUni2.jpg </gallery> 56a8227762fcac0412dc0667d8d47ee9c219ab58 2165 2158 2022-09-10T01:42:01Z S30Z 2 /* Gallery */ wikitext text/x-wiki {{Jobinfo5 |desc=The Hospital Worker job requires staying inside the LHS Hospital in order to make money and level up. Hospital Workers are equipped with a first aid kit which can be used to heal wounded players. |resp= *Provide healthcare to citizens |rank1=Intern |rank1pay=$220 |rank2=Resident |rank2pay=$325 |rank3=Nurse |rank3pay=$525 |rank4=Attending Physician |rank4pay=$875 |rank5=Medical Director |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' LHS Hospital is located near [[Fintech Employee#Location|Fintech]] and [[Cafe Worker#Location|Starblocks]]. <gallery> File:LHS1.jpg File:LHS2.jpg File:LHS3.jpg File:LHS4.jpg </gallery> == Gallery == <gallery> File:HWUni2.jpg|The Hospital Worker uniform is automatically equipped when entering the hospital and removed when leaving. File:HWUni1.jpg </gallery> ddba8b42d9834ed5ee561284ab4c4e13334f530e File:LHS1.jpg 6 1557 2159 2022-09-10T01:38:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LHS2.jpg 6 1558 2160 2022-09-10T01:39:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LHS3.jpg 6 1559 2161 2022-09-10T01:39:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LHS4.jpg 6 1560 2162 2022-09-10T01:40:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HWUni1.jpg 6 1561 2163 2022-09-10T01:40:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HWUni2.jpg 6 1562 2164 2022-09-10T01:41:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Paramedic 0 316 2166 571 2022-09-10T02:20:35Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Paramedic job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a paramedic no matter where the player is. Paramedics are equipped with a first aid kit which can be used to heal wounded players. Paramedics also have access to some exclusive vehicles. You can find them [[:Category:Paramedic vehicles|here]]. |resp= *Provide healthcare to citizens |rank1=EMT |rank1pay=$220 |rank2=AEMT |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Captain |rank4pay=$875 |rank5=Chief Of Emergency Services |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Paramedics spawn at the [[Hospital Worker#Location|LHS Hospital]]. == Gallery == <gallery> File:PMUni1.jpg File:PMUni2.jpg </gallery> cba1bd03c508aca1687aeb78d975b4bb75bdc2df Category:Paramedic vehicles 14 1563 2167 2022-09-10T02:21:40Z S30Z 2 Created page with "Vehicles that can only be used by [[Paramedic|paramedics]]." wikitext text/x-wiki Vehicles that can only be used by [[Paramedic|paramedics]]. 17f6b437e3a7ad2cebd8f95664dfe61f567c0673 2022 Fard F-450 Ambulance 0 288 2168 453 2022-09-10T02:21:56Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Ambulance |image=F450Amb_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Ambulance is an ambulance produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=11500|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450Amb_Rear.jpg|Rear view of the 2020 Fard F-450 Ambulance. </gallery> [[Category:Paramedic_vehicles]] 5815549e61d0163a293190d931e2690069c83029 File:PMUni1.jpg 6 1564 2169 2022-09-10T02:27:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:PMUni2.jpg 6 1565 2170 2022-09-10T02:27:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2011 Fard Crown Victoria Police Interceptor 0 236 2171 1756 2022-09-10T02:31:26Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor |image=CVPI_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPI_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor. </gallery> [[Category:Police vehicles]] 9aeb39db0f453bbbb7507f50dc07def5764062e3 2201 2171 2022-09-10T02:57:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor |image=CVPI_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPI_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor. </gallery> [[Category:Police vehicles|Fard]] ed445035c565a95a4dee851dc883b884e333a74d 2011 Fard Crown Victoria Police Interceptor Undercover 0 255 2172 405 2022-09-10T02:31:44Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Undercover |image=CVPI_Undercover_Front.jpg |make=Fard |type=Emergency |price=$11,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $11,850. ==Stats== The Crown Victoria Police Interceptor Undercover has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=120|drv=RWD}} ==Gallery== <gallery> File:CVPI_Undercover_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Undercover. </gallery> [[Category:Police vehicles]] 286b250380f7b799ede14e0c5c3a69316d0fbe09 2202 2172 2022-09-10T02:57:21Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Undercover |image=CVPI_Undercover_Front.jpg |make=Fard |type=Emergency |price=$11,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $11,850. ==Stats== The Crown Victoria Police Interceptor Undercover has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=120|drv=RWD}} ==Gallery== <gallery> File:CVPI_Undercover_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Undercover. </gallery> [[Category:Police vehicles|Fard]] a63fbc54f330dc59a9450fb3ae1044f26a26c5aa 2019 Fard Police Responder Undercover 0 254 2173 404 2022-09-10T02:31:47Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Police Responder Undercover |image=Responder_Front.jpg |make=Fard |type=Emergency |price=$32,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fusion_(Americas)#Second_generation_(2013) |rlname=Ford Police Responder |limited=0 |electric=0 }} The 2019 Fard Police Responder Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fard Police Responder Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=240|tqval=286|whval=3525|spdval=105|drv=FWD}} ==Gallery== <gallery> File:Responder_Rear.jpg|Rear view of the 2019 Fard Police Responder Undercover. </gallery> [[Category:Police vehicles]] 18b1f0cbfe8ad93025a4d5ebca0c3704ace648e9 2203 2173 2022-09-10T02:57:23Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Police Responder Undercover |image=Responder_Front.jpg |make=Fard |type=Emergency |price=$32,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Fusion_(Americas)#Second_generation_(2013) |rlname=Ford Police Responder |limited=0 |electric=0 }} The 2019 Fard Police Responder Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $32,645. ==Stats== The Fard Police Responder Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=240|tqval=286|whval=3525|spdval=105|drv=FWD}} ==Gallery== <gallery> File:Responder_Rear.jpg|Rear view of the 2019 Fard Police Responder Undercover. </gallery> [[Category:Police vehicles|Fard]] c9ee51b75df0a1afdb3d0ea3551cae4660817250 2020 Fard F150 Police Responder 0 271 2174 434 2022-09-10T02:31:50Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F150 Police Responder |image=F150_Police_Front.jpg |make=Fard |type=Emergency |price=$44,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series#Thirteenth_generation_(2015%E2%80%932020) |rlname=Ford F150 |limited=0 |electric=0 }} The 2020 Fard F150 Police Responder is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $44,450. ==Stats== The F150 Police Responder has 5 seats and a fuel capacity of 26 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=439|tqval=519|whval=5500|spdval=135|drv=AWD}} ==Gallery== <gallery> File:F150_Police_Rear.jpg|Rear view of the 2020 Fard F150 Police Responder. </gallery> [[Category:Police vehicles]] f433d827be519803e12367af1117c6e2d84874a3 2204 2174 2022-09-10T02:57:26Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F150 Police Responder |image=F150_Police_Front.jpg |make=Fard |type=Emergency |price=$44,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series#Thirteenth_generation_(2015%E2%80%932020) |rlname=Ford F150 |limited=0 |electric=0 }} The 2020 Fard F150 Police Responder is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $44,450. ==Stats== The F150 Police Responder has 5 seats and a fuel capacity of 26 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=439|tqval=519|whval=5500|spdval=135|drv=AWD}} ==Gallery== <gallery> File:F150_Police_Rear.jpg|Rear view of the 2020 Fard F150 Police Responder. </gallery> [[Category:Police vehicles|Fard]] 9f212309047d399ddf6bfd7085aed59c5386259f 2021 Fard Police Interceptor Utility Undercover 0 252 2175 402 2022-09-10T02:31:53Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Undercover |image=PIUtility_Undercover_Front.jpg |make=Fard |type=Emergency |price=$25,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $25,000. ==Stats== The Police Interceptor Utility Undercover has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Undercover_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Undercover. </gallery> [[Category:Police vehicles]] 1c68f19ee078790445d7484791811e2d6f197325 2021 Fard Police Interceptor Utility 0 237 2176 1757 2022-09-10T02:31:54Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility |image=PIUtility_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility. </gallery> [[Category:Police vehicles]] 199f4a6d6e35c141957b46607adc0553734771fa 2020 Dodje Charger Badcat Pursuit Undercover 0 256 2177 423 2022-09-10T02:32:03Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit Undercover |image=ChargerPB_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$69,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $69,500. ==Stats== The Dodje Charger Badcat Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit Undercover. </gallery> [[Category:Police vehicles]] 35d2ad84f0c8d779d314d981cb9d79b52ecfbfb4 2020 Chavy Tahoe PPV 0 264 2178 427 2022-09-10T02:32:07Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe PPV |image=PPV_Front.jpg |make=Chavy |type=Emergency |price=$33,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $33,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=355|tqval=383|whval=5480|spdval=135|drv=RWD}} ==Gallery== <gallery> File:PPV_Rear.jpg|Rear view of the 2020 Chavy Tahoe PPV. </gallery> [[Category:Police vehicles]] dbdd69c3e35c0de45f454ce58192ac43fd7281ed 2020 Dodje Charger Pursuit 0 272 2179 435 2022-09-10T02:32:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit |image=ChargerP_Front.jpg |make=Dodje |type=Emergency |price=$39,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $39,500. ==Stats== The Dodje Charger Pursuit has 5 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=370|tqval=432|whval=4271|spdval=147|drv=RWD}} ==Gallery== <gallery> File:ChargerP_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit. </gallery> [[Category:Police vehicles]] e007da6ca65ceeb5f29f96c2a7d7b9e284090fb5 2020 Dodje Charger Badcat Pursuit 0 273 2180 436 2022-09-10T02:32:09Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit |image=ChargerPB_Front.jpg |make=Dodje |type=Emergency |price=$67,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $67,500. ==Stats== The Dodje Charger Badcat Pursuit has 5 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit. </gallery> [[Category:Police vehicles]] 6f1ef06829016795f94459b25a4603aec8e57b7c 2020 Chavy Tahoe PPV Undercover 0 251 2181 401 2022-09-10T02:32:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe PPV Undercover |image=PPV_Undercover_Front.jpg |make=Chavy |type=Emergency |price=$35,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV Undercover is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $35,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=355|tqval=383|whval=5480|spdval=135|drv=RWD}} ==Gallery== <gallery> File:PPV_Undercover_Rear.jpg|Rear view of the 2020 Chavy Tahoe PPV Undercover. </gallery> [[Category:Police vehicles]] 512988bb017317831c0ad1047ae4e1820d01819a 2020 Dodje Charger Pursuit Undercover 0 253 2182 403 2022-09-10T02:36:17Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit Undercover |image=ChargerP_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$41,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $41,550. ==Stats== The Dodje Charger Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=370|tqval=432|whval=4271|spdval=147|drv=RWD}} ==Gallery== <gallery> File:ChargerP_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit Undercover. </gallery> [[Category:Police vehicles]] 4645e9ea45fba8a952d6ee65d8cac712c2ac4a68 Category:Police vehicles 14 1566 2183 2022-09-10T02:36:56Z S30Z 2 Created page with "All [[police]] vehicles in Southwest Florida." wikitext text/x-wiki All [[police]] vehicles in Southwest Florida. 429c8c5856ad1d164af66b72421a11fe5d8760f1 Police 0 297 2184 2134 2022-09-10T02:37:40Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Police job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a police officer no matter where the player is. Police officers can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Police officers are equipped with a G17, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. Police officers also have access to some exclusive vehicles. You can find them [[:Category:Police vehicles|here]]. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Officer |rank1pay=$220 |rank2=Corporal |rank2pay=$325 |rank3=Sergeant |rank3pay=$525 |rank4=Liuetenant |rank4pay=$875 |rank5=Captain |rank5pay=$1375}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The police station is located near [[RW Bank Employee#Location|RW Bank]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:Policestationoutside.jpg File:Policestationint1.jpg File:Policestationint2.jpg File:Policestationint3.jpg File:Policestationint4.jpg File:Policestationint5.jpg </gallery> == Gallery == <gallery> File:PoliceUni1.jpg File:PoliceUni2.jpg </gallery> 1d45a506ba76f832729593fb6785759660feb16e 2021 Fard Police Interceptor Utility Sheriff 0 1327 2185 1759 2022-09-10T02:38:50Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Sheriff |image=PIUtilitySheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilitySheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Sheriff. </gallery> [[Category:Sheriff vehicles]] 82aa9f8f003ade3d2a445427bbec8ac82a80529a 2021 Fard Police Interceptor Utility Unmarked Sheriff 0 1328 2186 1760 2022-09-10T02:38:57Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Unmarked Sheriff |image=PIUtilityUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilityUnmarkedSheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Unmarked Sheriff. </gallery> [[Category:Sheriff vehicles]] 241d71169476e92b59e78836a49ee229819e11d6 2016 Fard Police Interceptor Sedan Unmarked Sheriff 0 1331 2187 1762 2022-09-10T02:39:12Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Unmarked Sheriff |image=PInterceptorUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorUnmarkedSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Unmarked Sheriff. </gallery> [[Category:Sheriff vehicles]] 688948f799e702c96aee259aa46e899e96d8a2a2 2016 Fard Police Interceptor Sedan Sheriff 0 1329 2188 1761 2022-09-10T02:39:14Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Sheriff |image=PInterceptorSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Sheriff. </gallery> [[Category:Sheriff vehicles]] 939661659d330c975e2b7e8e6ee15da80fcffad1 2011 Fard Crown Victoria Police Interceptor Sheriff 0 1326 2189 1758 2022-09-10T02:39:16Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Sheriff |image=CVPISheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPISheriff_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Sheriff. </gallery> [[Category:Sheriff vehicles]] 351e1c9fbe0275c323416f5d4376955704c24b18 2021 Fard Mustang GT Unmarked 0 1332 2190 1763 2022-09-10T02:39:19Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT Unmarked |image=2021_Mustang_GTUnmarked_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT Unmarked is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mustang GT Unmarked has 4 seats and a fuel capacity of 16 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} ==Gallery== <gallery> File:2021_Mustang_GTUnmarked_Rear.jpg|Rear view of the 2021 Fard Mustang GT Unmarked. </gallery> [[Category:Sheriff vehicles]] cd62808369ab11a90878a589ab9c12b581298d17 2019 Fard Ranger CSU 0 1333 2191 1899 2022-09-10T02:39:28Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSU |image=RangerCSU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSU is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSU has 8 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSU_Rear.jpg|Rear view of the 2019 Fard Ranger CSU. </gallery> [[Category:Sheriff vehicles]] 4875ae7a63d5bc6ead21e06d7807d1a85400a820 Category:Sheriff vehicles 14 1567 2192 2022-09-10T02:39:53Z S30Z 2 Created page with "[[Sheriff]] vehicles in Southwest Florida." wikitext text/x-wiki [[Sheriff]] vehicles in Southwest Florida. 42aa728f4466c3862092c3dab7693781b3dcffd4 Sheriff 0 315 2193 2135 2022-09-10T02:40:28Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= This job requires the Law Enforcement+ gamepass. The Sheriff job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a sheriff no matter where the player is. Sheriffs can participate in PVP combat with criminals, ONLY if they have PVP enabled. They are notified whenever a criminal begins a robbery, and their PVP will automatically be enabled when entering the scene of an active robbery. Sheriffs are equipped with a M1911, radar gun, traffic cones, taser, and can also use an M4A1 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. Sheriffs also have access to some exclusive vehicles. You can find them [[:Category:Sheriff vehicles|here]]. |resp= *Enforce traffic laws *Protect citizens and the city from criminals *Stop robberies |rank1=Deputy |rank1pay=$240 |rank2=Sergeant |rank2pay=$350 |rank3=Captain |rank3pay=$575 |rank4=Chief Deputy |rank4pay=$950 |rank5=Sheriff |rank5pay=$1500}} == Location == Sheriffs spawn at the [[Police#Location|police station]]. == Gallery == <gallery> File:SheriffUni1.jpg File:SheriffUni2.jpg </gallery> 7c401654278621318fdedd9ecda50a849a830cde 2020 Fard F-450 Fast Response Unit 0 277 2194 442 2022-09-10T02:44:02Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> [[Category:Firefighter vehicles]] 7ff771d4e912985cb6beae70d3c55f8881846531 2198 2194 2022-09-10T02:55:01Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> [[Category:Firefighter vehicles|{{{make}}}]]]] 780a1778352bb3cad458c1227c7018078efa56ec 2199 2198 2022-09-10T02:55:28Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> [[Category:Firefighter vehicles|make]] 1f6266bdf1d03a9926c8879d4c3297983241b12d 2200 2199 2022-09-10T02:55:54Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Fard F-450 Fast Response Unit |image=F450FRU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2020 Fard F-450 Fast Response Unit is a fire truck produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. It also has a seemingly infinite water supply. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=8586|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450FRU_Rear.jpg|Rear view of the 2020 Fard F-450 Fast Response Unit. </gallery> [[Category:Firefighter vehicles|Fard]] 0cf38e49d201796ab930f5201cbba0283b8f5141 Stuphen Monarch Heavy Rescue Truck 0 285 2195 450 2022-09-10T02:44:11Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=Stuphen Monarch Heavy Rescue Truck |image=Monarch_Front.jpg |make=Stuphen |type=Emergency |price=$109,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Sutphen |rlname=Sutphen Monarch |limited=0 |electric=0 }} The Stuphen Monarch Heavy Rescue Truck is a fire truck produced by [[Stuphen]]. It can be purchased at the dealership for $109,000. ==Stats== The Monarch Heavy Rescue Truck has 6 seats and has a fuel capacity of 100 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=350|tqval=1000|whval=41250|spdval=95|drv=RWD}} ==Gallery== <gallery> File:Monarch_Rear.jpg|Rear view of the Stuphen Monarch Heavy Rescue Truck. File:Monarch_CoverClosed.jpg|Unlike other fire trucks, the water hose is hidden under a cover on the driver's side. File:Monarch_CoverOpen.jpg|Cover opened. </gallery> [[Category:Firefighter vehicles]] 5c3ac1af3b980573410efefa01f510594c643419 Intercontinental Durastar Heavy Duty Pumper 0 283 2196 448 2022-09-10T02:44:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=Intercontinental Durastar Heavy Duty Pumper |image=Durastar_Front.jpg |make=Intercontinental |type=Emergency |price=$146,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/International_DuraStar |rlname=International DuraStar |limited=0 |electric=0 }} The Intercontinental Durastar Heavy Duty Pumper is a fire truck produced by [[Intercontinental]]. It can be purchased at the dealership for $146,000. ==Stats== The Durastar Heavy Duty Pumper has 6 seats and has a fuel capacity of 100 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=350|tqval=1000|whval=42600|spdval=95|drv=RWD}} ==Gallery== <gallery> File:Durastar_Rear.jpg|Rear view of the Intercontinental Durastar Heavy Duty Pumper. </gallery> [[Category:Firefighter vehicles]] 16f07fb18cdc3862e403f7d74fe4ec3e0ce53ecc Category:Firefighter vehicles 14 1568 2197 2022-09-10T02:48:56Z S30Z 2 Created page with "All [[firefighter]] vehicles in Southwest Florida." wikitext text/x-wiki All [[firefighter]] vehicles in Southwest Florida. 92c678c57d6ffc20f82300c2ebf991c64cd09c65 2021 Fard Police Interceptor Utility 0 237 2205 2176 2022-09-10T02:57:29Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility |image=PIUtility_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility is a police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility has 5 seats and has an infinite fuel capacity. Despite this, a fuel meter is still displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility. </gallery> [[Category:Police vehicles|Fard]] c2987f36b9e5ce2ff8797123ea12ce9017829a4e 2021 Fard Police Interceptor Utility Undercover 0 252 2206 2175 2022-09-10T02:57:32Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Undercover |image=PIUtility_Undercover_Front.jpg |make=Fard |type=Emergency |price=$25,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Undercover is a police vehicle produced by [[Fard]]. It can be purchased from the dealership for $25,000. ==Stats== The Police Interceptor Utility Undercover has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtility_Undercover_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Undercover. </gallery> [[Category:Police vehicles|Fard]] 4dfd15bd2b556a5484da5355cc23d9ae7ded2ec7 2011 Fard Crown Victoria Police Interceptor Sheriff 0 1326 2207 2189 2022-09-10T03:03:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Fard Crown Victoria Police Interceptor Sheriff |image=CVPISheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Crown_Victoria_Police_Interceptor#Second_generation_(1998%E2%80%932011) |rlname=Ford Crown Victoria Police Interceptor (2nd gen.) |limited=0 |electric=0 }} The 2011 Fard Crown Victoria Police Interceptor Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Crown Victoria Police Interceptor Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=249|tqval=297|whval=4129|spdval=128|drv=RWD}} ==Gallery== <gallery> File:CVPISheriff_Rear.jpg|Rear view of the 2011 Fard Crown Victoria Police Interceptor Sheriff. </gallery> [[Category:Sheriff vehicles|Fard]] 6e76bff1f56da9447e469f4a9249976184b46b9a 2016 Fard Police Interceptor Sedan Sheriff 0 1329 2208 2188 2022-09-10T03:03:19Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Sheriff |image=PInterceptorSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Sheriff. </gallery> [[Category:Sheriff vehicles|Fard]] ed1e4e9cf5037f6d346a597695b6ab7a6077300b 2016 Fard Police Interceptor Sedan Unmarked Sheriff 0 1331 2209 2187 2022-09-10T03:03:22Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Fard Police Interceptor Sedan Unmarked Sheriff |image=PInterceptorUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Taurus_(sixth_generation)#Police_Interceptor_Sedan |rlname=Ford Police Interceptor Sedan |limited=0 |electric=0 }} The 2016 Fard Police Interceptor Sedan Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Sedan Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=365|tqval=350|whval=4343|spdval=121|drv=AWD}} ==Gallery== <gallery> File:PInterceptorUnmarkedSheriff_Rear.jpg|Rear view of the 2016 Fard Police Interceptor Sedan Unmarked Sheriff. </gallery> [[Category:Sheriff vehicles|Fard]] 22af25ad191142eb95f5ba72eb72d75a9a8bed27 2019 Fard Ranger CSU 0 1333 2210 2191 2022-09-10T03:03:25Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSU |image=RangerCSU_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSU is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSU has 8 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSU_Rear.jpg|Rear view of the 2019 Fard Ranger CSU. </gallery> [[Category:Sheriff vehicles|Fard]] bb3aa343377c45638afd18019fc61d796451a576 2021 Fard Mustang GT Unmarked 0 1332 2211 2190 2022-09-10T03:03:27Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT Unmarked |image=2021_Mustang_GTUnmarked_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2021 Fard Mustang GT Unmarked is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Mustang GT Unmarked has 4 seats and a fuel capacity of 16 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} ==Gallery== <gallery> File:2021_Mustang_GTUnmarked_Rear.jpg|Rear view of the 2021 Fard Mustang GT Unmarked. </gallery> [[Category:Sheriff vehicles|Fard]] b6a151d905bbe50d7741abe5902e8de8d7e8485d 2021 Fard Police Interceptor Utility Sheriff 0 1327 2212 2185 2022-09-10T03:03:31Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Sheriff |image=PIUtilitySheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Sheriff has 5 seats and a fuel capacity of 19 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilitySheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Sheriff. </gallery> [[Category:Sheriff vehicles|Fard]] 71c0db7c15a68ef62b6f3b10f159eb33a4c8d6b6 2021 Fard Police Interceptor Utility Unmarked Sheriff 0 1328 2213 2186 2022-09-10T03:03:33Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Police Interceptor Utility Unmarked Sheriff |image=PIUtilityUnmarkedSheriff_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Explorer#Ford_Police_Interceptor_Utility= |rlname=Ford Police Interceptor Utility |limited=0 |electric=0 }} The 2021 Fard Police Interceptor Utility Unmarked Sheriff is a [[sheriff]]-only police vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Police Interceptor Utility Unmarked Sheriff has 5 seats and a fuel capacity of 19 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=439|tqval=518|whval=4727|spdval=145|drv=AWD}} ==Gallery== <gallery> File:PIUtilityUnmarkedSheriff_Rear.jpg|Rear view of the 2021 Fard Police Interceptor Utility Unmarked Sheriff. </gallery> [[Category:Sheriff vehicles|Fard]] 1ea2577182aa5f51d4ddc6cc294a312aeb0d3298 2020 Chavy Tahoe PPV Undercover 0 251 2214 2181 2022-09-10T03:06:04Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe PPV Undercover |image=PPV_Undercover_Front.jpg |make=Chavy |type=Emergency |price=$35,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV Undercover is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $35,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=355|tqval=383|whval=5480|spdval=135|drv=RWD}} ==Gallery== <gallery> File:PPV_Undercover_Rear.jpg|Rear view of the 2020 Chavy Tahoe PPV Undercover. </gallery> [[Category:Police vehicles|Chavy]] 4ad7608c23edb3c20a58ea96ac4fcc428f2c5b00 2020 Chavy Tahoe PPV 0 264 2215 2178 2022-09-10T03:06:07Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Chavy Tahoe PPV |image=PPV_Front.jpg |make=Chavy |type=Emergency |price=$33,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Tahoe#Police_package |rlname=Chevrolet Tahoe PPV |limited=0 |electric=0 }} The 2020 Chavy Tahoe PPV is a police vehicle produced by [[Chavy]]. It can be purchased from the dealership for $33,000. ==Stats== The Tahoe PPV has 5 seats and a fuel capacity of 28 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=355|tqval=383|whval=5480|spdval=135|drv=RWD}} ==Gallery== <gallery> File:PPV_Rear.jpg|Rear view of the 2020 Chavy Tahoe PPV. </gallery> [[Category:Police vehicles|Chavy]] 2942cd45b96ce1ff63442c59fef8f8a9cade158a 2020 Dodje Charger Badcat Pursuit Undercover 0 256 2216 2177 2022-09-10T03:13:26Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit Undercover |image=ChargerPB_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$69,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $69,500. ==Stats== The Dodje Charger Badcat Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit Undercover. </gallery> [[Category:Police vehicles|Dodje]] cb202f01c951ddab54c8ec55a8eb22f474ee38c4 2020 Dodje Charger Pursuit 0 272 2217 2179 2022-09-10T03:13:31Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit |image=ChargerP_Front.jpg |make=Dodje |type=Emergency |price=$39,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $39,500. ==Stats== The Dodje Charger Pursuit has 5 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=370|tqval=432|whval=4271|spdval=147|drv=RWD}} ==Gallery== <gallery> File:ChargerP_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit. </gallery> [[Category:Police vehicles|Dodje]] d1d2b0552f719a6afde9dcd953126f876e28fa3c 2020 Dodje Charger Pursuit Undercover 0 253 2218 2182 2022-09-10T03:13:32Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Pursuit Undercover |image=ChargerP_Undercover_Front.jpg |make=Dodje |type=Emergency |price=$41,550 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Police_package/Charger_Pursuit |rlname=Dodge Charger Pursuit |limited=0 |electric=0 }} The 2020 Dodje Charger Pursuit Undercover is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $41,550. ==Stats== The Dodje Charger Pursuit Undercover has 5 seats and a fuel capacity of 18 gallons. As an undercover police vehicle, paint is its only available modification. {{Stockstats|hpval=370|tqval=432|whval=4271|spdval=147|drv=RWD}} ==Gallery== <gallery> File:ChargerP_Undercover_Rear.jpg|Rear view of the 2020 Dodje Charger Pursuit Undercover. </gallery> [[Category:Police vehicles|Dodje]] 91ac11e313c2d3d66e64b9b737897a7467af421d 2020 Dodje Charger Badcat Pursuit 0 273 2219 2180 2022-09-10T03:13:35Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Dodje Charger Badcat Pursuit |image=ChargerPB_Front.jpg |make=Dodje |type=Emergency |price=$67,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#Charger_SRT_Hellcat |rlname=Dodge Charger SRT Hellcat |limited=0 |electric=0 }} The 2020 Dodje Charger Badcat Pursuit is a police vehicle produced by [[Dodje]]. It can be purchased from the dealership for $67,500. ==Stats== The Dodje Charger Badcat Pursuit has 5 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modifed. {{Stockstats|hpval=706|tqval=639|whval=4586|spdval=207|drv=AWD}} ==Gallery== <gallery> File:ChargerPB_Rear.jpg|Rear view of the 2020 Dodje Charger Badcat Pursuit. </gallery> [[Category:Police vehicles|Dodje]] 574a77860b3f8866f714bbd322af09b4d9001b98 Firefighter 0 313 2220 2129 2022-09-10T05:14:10Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Firefighter job requires extinguishing fires around Southwest Florida in order to make money and level up. Firefighters will be automatically notified when a fire starts and a location marker will be added to their map to help them find it. Firefighters are equipped with traffic cones. A firefighter's income depends on their rank and time spent when extinguishing a fire. They will only be paid if the fire has been successfully extinguished. Firefighters also have access to some exclusive vehicles. You can find them [[:Category:Firefighter vehicles|here]] |resp= *Fight building fires throughout the city |rank1=Fire Cadet |rank1pay=N/A |rank2=Firefighter |rank2pay=N/A |rank3=Lieutenant |rank3pay=N/A |rank4=Captain |rank4pay=N/A |rank5=Fire Chief |rank5pay=N/A}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' The fire station is located near the [[RW Bank Employee#Location|RW Bank]] and [[Sunset Performance#Location|Sunset Performance]]. <gallery> File:FStation1.jpg File:FStation2.jpg File:FStation3.jpg File:FStation4.jpg|Firefighters can change their uniform and equip/remove an optional helmet and mask by clicking on them here. File:FStation5.jpg </gallery> == Gallery == <gallery> File:FFighter1.jpg File:FFighter2.jpg File:FFighter3.jpg File:FFighter4.jpg File:FFighter5.jpg File:FFighter6.jpg File:FLocMarker.jpg|Fire location marker </gallery> 884be12ba7d65fb1f208540fa0ebdc6833feaab7 2019 Fard Ranger CSA 0 1422 2221 1902 2022-09-10T05:26:20Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Fard Ranger CSA |image=RangerCSA_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_Ranger_(T6)#North_American_version_(2019%E2%80%93present) |rlname=Ford Ranger |limited=0 |electric=0 }} The 2019 Fard Ranger CSA is a [[Community Service Aide|community service]] vehicle produced by [[Fard]]. It is a complimentary car given out to all Southwest Florida players. As a complimentary car, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The Ranger CSA has 8 seats and a fuel capacity of 18 gallons. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=270|tqval=310|whval=4354|spdval=110|drv=AWD}} ==Gallery== <gallery> File:RangerCSA_Rear.jpg|Rear view of the 2019 Fard Ranger CSA. </gallery> [[Category:Community Service Aide vehicles|Fard]] 223adc9571e5f62098234593e3e87996134f6ee8 Category:Police vehicles 14 1566 2222 2183 2022-09-10T05:28:31Z S30Z 2 wikitext text/x-wiki All [[police]] vehicles in Southwest Florida. [[Category:Emergency]] 9ee485c47619f58240a0f0f23d62a579ca2e10ae Category:Community Service Aide vehicles 14 1569 2223 2022-09-10T05:28:32Z S30Z 2 Created page with "All [[Community Service Aide]] vehicles in Southwest Florida [[Category:Emergency]]" wikitext text/x-wiki All [[Community Service Aide]] vehicles in Southwest Florida [[Category:Emergency]] f787e6e3733681f89686fda62613bb9f04e73a04 Category:Firefighter vehicles 14 1568 2224 2197 2022-09-10T05:28:35Z S30Z 2 wikitext text/x-wiki All [[firefighter]] vehicles in Southwest Florida. [[Category:Emergency]] 6b3bfba51a8cfe075fb4b4a529049707442448ac Category:Sheriff vehicles 14 1567 2225 2192 2022-09-10T05:28:48Z S30Z 2 wikitext text/x-wiki [[Sheriff]] vehicles in Southwest Florida. [[Category:Emergency]] 0a8f62fd19d72b58d9c785845bb78371e6c4aae3 Category:Paramedic vehicles 14 1563 2226 2167 2022-09-10T05:29:07Z S30Z 2 wikitext text/x-wiki Vehicles that can only be used by [[Paramedic|paramedics]]. [[Category:Emergency]] 1b3427838edad4c7279b451ef7f498c33cce719b Cafe Worker 0 291 2227 2033 2022-09-10T05:31:42Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Cafe Worker job requires staying inside Starblocks in order to make money and level up. |resp= *Serve customers with drinks & food at cafe locations around the city |rank1=Barista |rank1pay=$250 |rank2=Barista Trainer |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1025 |rank5=Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Starblocks is located near [[Fintech Employee#Location|Fintech]] and the [[Hospital Worker#Location|LHS Hospital]]. <gallery> File:Starblocksfront.jpg File:Starblocksrear.jpg File:Starblocksint.jpg </gallery> ==Items that can be purchased at Starblocks== {| class="wikitable" |- !Item!!Cost |- |Cakepop||$2 |- |Coffee||$2 |- |Iced Tea |$2 |- |Doughnut |$2 |- |Burrito |$2 |- |Iced Coffee||$3 |- |Pink Drink||$5 |- |Latte||$5 |- |Frappuccino |$6 |} 1da2d46c777838a79bb8b63be59d5817b031a02f JPhone 0 1487 2228 2078 2022-09-10T05:37:07Z S30Z 2 wikitext text/x-wiki {{DISPLAYTITLE:jPhone}} [[File:Jphone1.png|thumb|Home screen on a jPhone]] The jPhone 12 and jPhone 12 Pro Max are fictional smartphones in Southwest Florida. They are based on the [https://en.wikipedia.org/wiki/IPhone_12 Apple iPhone 12 and iPhone 12 Pro Max]. They can be purchased from [[Vorzen Employee|Vorzen employees]]. jPhones are available in several different colors such as red, blue, lavender and black. Once purchased, the jPhone will remain in the player's inventory. It cannot be sold, but it can be exchanged for a different jPhone. When a player exchanges their jPhone, they will receive 80% of the original price of their old jPhone. Currently, the jPhone's only feature is text messaging with other players who own the jPhone, however there are more features being worked on, including a [[Rift Driver|Rift]] app, settings app and phone app. There also exists a limited Raft variant of the jPhone 12 Pro Max. It was only available for around 7 days and had a price tag of $25,000,000. It has Raft18's Discord profile picture on the back as well as a unique particle effect. ==jPhone Prices== {| class="wikitable" |- ! Type !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max (Gold) || $50,000 |- | jPhone 12 Pro Max (Platinum) || $75,000 |- | jPhone 12 Pro Max (Raft) || $25,000,000 |} ==Gallery== <gallery> File:Jphone2.jpg|"Coming Soon" screen seen when trying to launch the Rift, Settings and Phone apps. File:Jphone3.jpg|Lockscreen File:Jphone4.jpg|Raft phone File:Jphone5.jpg </gallery> f63d719a2c780453ec4dbf3ba7ce6a6de052f8f5 Houses 0 1570 2229 2022-09-10T07:17:59Z S30Z 2 Created page with "Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalows located across Southwest Florida. They can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === Th..." wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalows located across Southwest Florida. They can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. === Bungalow 2 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> == Mansions == 61cadd54b96434d1eb289990860aa08c7a0b4080 2240 2229 2022-09-10T07:27:02Z S30Z 2 /* Bungalows */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. === Bungalow 2 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> == Mansions == 617a66264fbacb4c56e3920845479940fd268d92 2242 2240 2022-09-10T08:07:02Z S30Z 2 /* Bungalows */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. == Mansions == f8862576e770c70337c37525b9097120ceb9ddc7 2243 2242 2022-09-10T08:18:35Z S30Z 2 /* Bungalows */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == 93e8925faaee0e5185ebba494dddd08ccf72d518 2253 2243 2022-09-10T09:11:08Z S30Z 2 /* Mansions */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == The mansions are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> da215e5a516b4ccac0d8578f17f8e03f319b5b6e 2254 2253 2022-09-10T09:12:31Z S30Z 2 /* Mansions */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == There are a total of 4 mansions in Southwest Florida. The mansions are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> c09ec5e77c36bdd446a1939f5754b3a4477b6b4f File:Bun1 1.jpg 6 1571 2230 2022-09-10T07:23:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 2.jpg 6 1572 2231 2022-09-10T07:24:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 3.jpg 6 1573 2232 2022-09-10T07:24:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 4.jpg 6 1574 2233 2022-09-10T07:24:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 5.jpg 6 1575 2234 2022-09-10T07:24:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 6.jpg 6 1576 2235 2022-09-10T07:24:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 7.jpg 6 1577 2236 2022-09-10T07:24:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 8.jpg 6 1578 2237 2022-09-10T07:25:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 9.jpg 6 1579 2238 2022-09-10T07:25:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun1 10.jpg 6 1580 2239 2022-09-10T07:25:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Main Page 0 1 2241 1978 2022-09-10T07:27:48Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[Easter Eggs]] [[Weapons]] [[Houses]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===For editors=== [[Guides]] 036c2fdf386ae3708c262bebc5895687e02df702 File:Bun2 1.jpg 6 1581 2244 2022-09-10T08:18:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 2.jpg 6 1582 2245 2022-09-10T08:19:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 3.jpg 6 1583 2246 2022-09-10T08:19:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 4.jpg 6 1584 2247 2022-09-10T08:19:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 5.jpg 6 1585 2248 2022-09-10T08:19:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 6.jpg 6 1586 2249 2022-09-10T08:19:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 7.jpg 6 1587 2250 2022-09-10T08:19:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 8.jpg 6 1588 2251 2022-09-10T08:20:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bun2 9.jpg 6 1589 2252 2022-09-10T08:20:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion19.jpg 6 1590 2255 2022-09-10T09:13:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion18.jpg 6 1591 2256 2022-09-10T09:15:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Houses 0 1570 2257 2254 2022-09-10T09:16:03Z S30Z 2 /* Mansions */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == There are a total of 4 mansion lots in Southwest Florida. The mansion lots are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion house type can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> 30ce02152e82c463a3e68c4931a7dd3d736b3706 2275 2257 2022-09-10T09:22:01Z S30Z 2 wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. After claiming a lot, a house icon will be added to the left side of the screen. This icon opens a menu with three options: '''Unclaim:''' Unclaim your lot. '''Sell:''' Sell your house type. '''Manage:''' Add/remove house owners and change your house's interior color. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == There are a total of 4 mansion lots in Southwest Florida. The mansion lots are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion house type can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> ed4e3af9ca5a285042f28ed288ef613e41600932 2282 2275 2022-09-10T09:27:17Z S30Z 2 wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. After claiming a lot, a house icon will be added to the left side of the screen. This icon opens a menu with three options: '''Unclaim:''' Unclaim your lot. '''Sell:''' Sell your house type. '''Manage:''' Add/remove house owners and change your house's interior color. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == There are a total of 4 mansion lots in Southwest Florida. The mansion lots are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion house type can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> [[Category:Locations]] 18201895ef78778801af5f9a02dd28dd141f6272 File:Mansion17.jpg 6 1592 2258 2022-09-10T09:16:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion16.jpg 6 1593 2259 2022-09-10T09:16:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion15.jpg 6 1594 2260 2022-09-10T09:16:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion14.jpg 6 1595 2261 2022-09-10T09:16:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion13.jpg 6 1596 2262 2022-09-10T09:16:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion12.jpg 6 1597 2263 2022-09-10T09:17:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion11.jpg 6 1598 2264 2022-09-10T09:17:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion10.jpg 6 1599 2265 2022-09-10T09:17:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion9.jpg 6 1600 2266 2022-09-10T09:17:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion8.jpg 6 1601 2267 2022-09-10T09:17:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion7.jpg 6 1602 2268 2022-09-10T09:18:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion6.jpg 6 1603 2269 2022-09-10T09:18:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion5.jpg 6 1604 2270 2022-09-10T09:18:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion4.jpg 6 1605 2271 2022-09-10T09:18:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion3.jpg 6 1606 2272 2022-09-10T09:18:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion2.jpg 6 1607 2273 2022-09-10T09:18:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Mansion1.jpg 6 1608 2274 2022-09-10T09:18:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Unempspawn.jpg 6 1609 2276 2022-09-10T09:24:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Riftsticker.jpg 6 1610 2277 2022-09-10T09:25:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Unemployed 0 303 2278 564 2022-09-10T09:25:17Z S30Z 2 wikitext text/x-wiki Unemployed is the default job all players are set to when first joining the game. Players are not paid when working this job. The job name is self explanatory; you are unemployed. Players assigned to this job will respawn at the default spawn location near the beach. == Gallery == <gallery> File:Unempspawn.jpg|Unemployed spawn </gallery> [[Category:Jobs]] c69823e723e3325ad4f37afe118e6455c3d6b03a Rift Driver 0 299 2279 1669 2022-09-10T09:25:44Z S30Z 2 wikitext text/x-wiki {{Jobinfo4 |desc= The Rift Driver job requires picking up and taking NPCs to different locations around Southwest Florida in order to make money and level up. Rift drivers have the same spawn point as [[Unemployed]] players. If the player exits their vehicle while on the way to pick up a passenger or while transporting a passenger, they will fail the delivery. All Rift drivers have Rift stickers placed on their car, usually on the back window. The wages shown below serve as a base. The amount of money you make depends not only on your rank, but also the amount of time taken to deliver passengers. |resp= *Give AI and real players rides around the city using your own vehicle |rank1=Partner |rank1pay=$250 |rank2=Gold Driver |rank2pay=$375 |rank3=Platinum Driver |rank3pay=$625 |rank4=Diamond Driver |rank4pay=$1025 }} == Gallery == <gallery> File:Riftsticker.jpg </gallery> d6d4a5cdcc31f93135b916683e44de3e4cabd660 2280 2279 2022-09-10T09:25:55Z S30Z 2 /* Gallery */ wikitext text/x-wiki {{Jobinfo4 |desc= The Rift Driver job requires picking up and taking NPCs to different locations around Southwest Florida in order to make money and level up. Rift drivers have the same spawn point as [[Unemployed]] players. If the player exits their vehicle while on the way to pick up a passenger or while transporting a passenger, they will fail the delivery. All Rift drivers have Rift stickers placed on their car, usually on the back window. The wages shown below serve as a base. The amount of money you make depends not only on your rank, but also the amount of time taken to deliver passengers. |resp= *Give AI and real players rides around the city using your own vehicle |rank1=Partner |rank1pay=$250 |rank2=Gold Driver |rank2pay=$375 |rank3=Platinum Driver |rank3pay=$625 |rank4=Diamond Driver |rank4pay=$1025 }} == Gallery == <gallery> File:Riftsticker.jpg|Rift sticker </gallery> fc59cca3ba6982d47c781a977ece9a68b7e7184a Main Page 0 1 2281 2241 2022-09-10T09:26:58Z S30Z 2 /* Quick Links */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[Easter Eggs]] [[Weapons]] [[:Category:Locations|Locations]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===For editors=== [[Guides]] 69328eb63009b9fb064ee78251e80929534213fc 2284 2281 2022-09-10T09:28:25Z S30Z 2 /* Quick Links */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===For editors=== [[Guides]] 86f949a572d5007767939dffdb7defe0d97a2922 Category:Locations 14 1611 2283 2022-09-10T09:27:31Z S30Z 2 Created page with "Locations in Southwest Florida" wikitext text/x-wiki Locations in Southwest Florida 6d018561b607cb291f4ead7939b1c507c2ec9a17 Gulf Paradise Condos 0 1612 2285 2022-09-10T09:29:43Z S30Z 2 Redirected page to [[Apartment Concierge#Location]] wikitext text/x-wiki #REDIRECT [[Apartment Concierge#Location]] [[Category:Locations]] 2b3b0cfc33897ad1f45adf270d59b1d46f23ec8c Automart 0 1613 2286 2022-09-10T09:30:21Z S30Z 2 Redirected page to [[Automart Employee#Location]] wikitext text/x-wiki #REDIRECT [[Automart Employee#Location]] [[Category:Locations]] b2ba2ebd7e0a0606063eeb13b805a6bc47595d6e Bubmart 0 1614 2287 2022-09-10T09:30:41Z S30Z 2 Redirected page to [[Bublix Employee#Location]] wikitext text/x-wiki #REDIRECT [[Bublix Employee#Location]] [[Category:Locations]] 103d160ea157e14ab3b7f4b9b0bc1b516c1256b2 Starblocks 0 1615 2288 2022-09-10T09:31:06Z S30Z 2 Redirected page to [[Cafe Worker#Location]] wikitext text/x-wiki #REDIRECT [[Cafe Worker#Location]] [[Category:Locations]] 798498321d1f84eaec256b6d23c8635b2c6955be CVC Pharmacy 0 1616 2289 2022-09-10T09:31:33Z S30Z 2 Redirected page to [[CVC Pharmacy Employee#Location]] wikitext text/x-wiki #REDIRECT [[CVC Pharmacy Employee#Location]] [[Category:Locations]] 8e27c7f6aaeca95f516627aa7713c2b03e000aae Sparrow Motorsports 0 1617 2290 2022-09-10T09:31:55Z S30Z 2 Redirected page to [[Dealership Employee#Location]] wikitext text/x-wiki #REDIRECT [[Dealership Employee#Location]] [[Category:Locations]] 3ff94d15085e808e98b4bf36e008b267e14358ca Dippin' Donuts 0 1618 2291 2022-09-10T09:32:15Z S30Z 2 Redirected page to [[Dippin' Donuts Employee#Location]] wikitext text/x-wiki #REDIRECT [[Dippin' Donuts Employee#Location]] [[Category:Locations]] 03f82e8ebfed25a42b27470fd23ab90ef6ebdcd4 Fintech 0 1619 2292 2022-09-10T09:32:35Z S30Z 2 Redirected page to [[Fintech Employee#Location]] wikitext text/x-wiki #REDIRECT [[Fintech Employee#Location]] [[Category:Locations]] bfba3201db6cda44c5c8a47e26e3cdc2a8cfe241 Fire Station 0 1620 2293 2022-09-10T09:33:03Z S30Z 2 Redirected page to [[Firefighter#Location]] wikitext text/x-wiki #REDIRECT [[Firefighter#Location]] [[Category:Locations]] 534855d5d173a086ac104f418d0d9e8ef76ecdb6 LHS Hospital 0 1621 2294 2022-09-10T09:33:34Z S30Z 2 Redirected page to [[Hospital Worker#Location]] wikitext text/x-wiki #REDIRECT [[Hospital Worker#Location]] [[Category:Locations]] 43871d1f245caaed3e8eb71293cbf86d0b6db512 Jeff's Pizza 0 1415 2295 1891 2022-09-10T09:34:13Z S30Z 2 Changed redirect target from [[Jeff's Pizza Employee]] to [[Jeff's Pizza Employee#Location]] wikitext text/x-wiki #REDIRECT [[Jeff's Pizza Employee#Location]] [[Category:Locations]] c5e2287b3ef141de669cab6fc30ec404eec4238f McBloxxer's 0 1622 2296 2022-09-10T09:34:37Z S30Z 2 Redirected page to [[McBloxxer's Employee#Location]] wikitext text/x-wiki #REDIRECT [[McBloxxer's Employee#Location]] [[Category:Locations]] 557f6443a0ee28d245f900e1177d3a09f42f165d Mirage 0 1623 2297 2022-09-10T09:34:54Z S30Z 2 Redirected page to [[Mirage Employee#Location]] wikitext text/x-wiki #REDIRECT [[Mirage Employee#Location]] [[Category:Locations]] 4c30143c0f56c06cdd9d3117acdec477d4d60ba3 Police Station 0 1624 2298 2022-09-10T09:35:29Z S30Z 2 Redirected page to [[Police#Location]] wikitext text/x-wiki #REDIRECT [[Police#Location]] [[Category:Locations]] f6884ecb02e872ac1695ade4e8779ad8c204995b RW Bank 0 1625 2299 2022-09-10T09:36:01Z S30Z 2 Redirected page to [[RW Bank Employee#Location]] wikitext text/x-wiki #REDIRECT [[RW Bank Employee#Location]] [[Category:Locations]] 7c1cead86ead6bf2037c334a454309b8ef9610db Seaside Bar and Grill (location) 0 1626 2300 2022-09-10T09:37:23Z S30Z 2 Redirected page to [[Seaside Bar and Grill#Location]] wikitext text/x-wiki #REDIRECT [[Seaside Bar and Grill#Location]] [[Category:Locations]] 73ca4eb9aaac669f0a6c4f3cdb69d48660c05013 2301 2300 2022-09-10T09:37:55Z S30Z 2 S30Z moved page [[Seaside]] to [[Seaside Bar and Grill (location)]] wikitext text/x-wiki #REDIRECT [[Seaside Bar and Grill#Location]] [[Category:Locations]] 73ca4eb9aaac669f0a6c4f3cdb69d48660c05013 StudRac 0 1628 2303 2022-09-10T09:38:32Z S30Z 2 Redirected page to [[StudRac Employee#Location]] wikitext text/x-wiki #REDIRECT [[StudRac Employee#Location]] [[Category:Locations]] cd97483143559c53846a981f23cdb4785c4dd764 Sunset Performance (location) 0 1629 2304 2022-09-10T09:38:58Z S30Z 2 Redirected page to [[Sunset Performance#Location]] wikitext text/x-wiki #REDIRECT [[Sunset Performance#Location]] [[Category:Locations]] 537d1124e64cbd21b5c103740b7a148b9599b715 Sussy's Mechanic Shop (location) 0 1630 2305 2022-09-10T09:39:20Z S30Z 2 Redirected page to [[Sussy's Mechanic Shop#Location]] wikitext text/x-wiki #REDIRECT [[Sussy's Mechanic Shop#Location]] [[Category:Locations]] e3fe94b5d6743874697b75f2f8c52c5a0ebfec8c Vorzen 0 1631 2306 2022-09-10T09:39:36Z S30Z 2 Redirected page to [[Vorzen Employee#Location]] wikitext text/x-wiki #REDIRECT [[Vorzen Employee#Location]] [[Category:Locations]] ea728b732edb6ea60ef8d9e08819a66f2bd27533 Aqualand 0 1632 2307 2022-09-10T09:39:55Z S30Z 2 Redirected page to [[Waterpark Employee#Location]] wikitext text/x-wiki #REDIRECT [[Waterpark Employee#Location]] [[Category:Locations]] 0b4ba99aed29655faeae9c498184bcc03e0aacd3 Mansion 0 1633 2308 2022-09-10T09:41:00Z S30Z 2 Redirected page to [[Houses]] wikitext text/x-wiki #REDIRECT [[Houses]] c120a0c46be4f50979c849233d19bfd06dc83046 Mansions 0 1634 2309 2022-09-10T09:41:19Z S30Z 2 Redirected page to [[Houses]] wikitext text/x-wiki #REDIRECT [[Houses]] c120a0c46be4f50979c849233d19bfd06dc83046 File:VFR750R Front.jpg 6 1635 2310 2022-09-10T18:52:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VFR750R Rear.jpg 6 1636 2311 2022-09-10T18:52:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VFR750R Cluster.jpg 6 1637 2312 2022-09-10T18:52:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:750RR Front.jpg 6 1638 2313 2022-09-10T18:52:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:750RR Rear.jpg 6 1639 2314 2022-09-10T18:53:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:750RR Cluster.jpg 6 1640 2315 2022-09-10T18:53:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZXR750 Front.jpg 6 1641 2316 2022-09-10T18:53:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZXR750 Rear.jpg 6 1642 2317 2022-09-10T18:56:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZXR750 Cluster.jpg 6 1643 2318 2022-09-10T18:58:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZX-7RR Front.jpg 6 1644 2319 2022-09-10T18:58:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZX-7RR Rear.jpg 6 1645 2320 2022-09-10T18:58:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:ZX-7RR Cluster.jpg 6 1646 2321 2022-09-10T18:59:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:NR750 Front.jpg 6 1647 2322 2022-09-10T18:59:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:NR750 Rear.jpg 6 1648 2323 2022-09-10T18:59:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:NR750 Cluster.jpg 6 1649 2324 2022-09-10T19:00:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1990 Handa VFR750R RC30 0 1650 2325 2022-09-10T19:01:29Z S30Z 2 Created page with "{{Carinfo |name=1990 Handa VFR750R RC30 |image=VFR750R_Front.jpg |make=Handa |type=Motorcycle |price=$43,870 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_S1000RR |rlname=BMW S1000RR |limited=0 |electric=0 }} The 1990 Handa VFR750R RC30 is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $43,870. ==Stats== The VFR750R RC30 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be mod..." wikitext text/x-wiki {{Carinfo |name=1990 Handa VFR750R RC30 |image=VFR750R_Front.jpg |make=Handa |type=Motorcycle |price=$43,870 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_S1000RR |rlname=BMW S1000RR |limited=0 |electric=0 }} The 1990 Handa VFR750R RC30 is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $43,870. ==Stats== The VFR750R RC30 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=118|tqval=51|whval=488|spdval=155|drv=RWD}} ==Gallery== <gallery> File:VFR750R_Rear.jpg|Rear view of the 1990 Handa VFR750R RC30. File:VFR750R_Cluster.jpg|Gauge cluster of the 1990 Handa VFR750R RC30. </gallery> e93b9238449aadcd65b60b9c5cdae97a49305254 2326 2325 2022-09-10T19:02:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1990 Handa VFR750R RC30 |image=VFR750R_Front.jpg |make=Handa |type=Motorcycle |price=$43,870 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_VFR750R |rlname=Honda VFR750R (RC30) |limited=0 |electric=0 }} The 1990 Handa VFR750R RC30 is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $43,870. ==Stats== The VFR750R RC30 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=118|tqval=51|whval=488|spdval=155|drv=RWD}} ==Gallery== <gallery> File:VFR750R_Rear.jpg|Rear view of the 1990 Handa VFR750R RC30. File:VFR750R_Cluster.jpg|Gauge cluster of the 1990 Handa VFR750R RC30. </gallery> f282d8f131119d09dc9e4cd5df896cba4b3d3685 1989 Sozooki GSX-R 750RR 0 1651 2327 2022-09-10T19:05:42Z S30Z 2 Created page with "{{Carinfo |name=1989 Sozooki GSX-R 750RR |image=750RR_Front.jpg |make=Sozooki |type=Motorcycle |price=$21,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Suzuki_GSX-R750 |rlname=Suzuki GSX-R750 |limited=0 |electric=0 }} The 1989 Sozooki GSX-R 750RR is a motorcycle produced by [[Sozooki]]. It can be purchased from the dealership for $21,400. ==Stats== The GSX-R 750RR has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it ca..." wikitext text/x-wiki {{Carinfo |name=1989 Sozooki GSX-R 750RR |image=750RR_Front.jpg |make=Sozooki |type=Motorcycle |price=$21,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Suzuki_GSX-R750 |rlname=Suzuki GSX-R750 |limited=0 |electric=0 }} The 1989 Sozooki GSX-R 750RR is a motorcycle produced by [[Sozooki]]. It can be purchased from the dealership for $21,400. ==Stats== The GSX-R 750RR has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=106|tqval=55|whval=493|spdval=154|drv=RWD}} ==Gallery== <gallery> File:750RR_Rear.jpg|Rear view of the 1989 Sozooki GSX-R 750RR. File:750RR_Cluster.jpg|Gauge cluster of the 1989 Sozooki GSX-R 750RR. </gallery> 76141b126a60f2087dd8f8d15b34c8c03834284e 1989 Kawisake ZXR750 0 1652 2328 2022-09-10T19:06:22Z S30Z 2 Created page with "{{Carinfo |name=1989 Kawisake ZXR750 |image=ZXR750_Front.jpg |make=Kawisake |type=Motorcycle |price=$16,465 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-7R |rlname=Kawasaki Ninja ZX-7R |limited=0 |electric=0 }} The 1989 Kawisake ZXR750 is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $16,465. ==Stats== The ZXR750 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it ca..." wikitext text/x-wiki {{Carinfo |name=1989 Kawisake ZXR750 |image=ZXR750_Front.jpg |make=Kawisake |type=Motorcycle |price=$16,465 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-7R |rlname=Kawasaki Ninja ZX-7R |limited=0 |electric=0 }} The 1989 Kawisake ZXR750 is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $16,465. ==Stats== The ZXR750 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=104|tqval=42|whval=509|spdval=150|drv=RWD}} ==Gallery== <gallery> File:ZXR750_Rear.jpg|Rear view of the 1989 Kawisake ZXR750. File:ZXR750_Cluster.jpg|Gauge cluster of the 1989 Kawisake ZXR750. </gallery> 82ae747d7285c781d725f5413d5abe3545959d12 1992 Handa NR750 0 1653 2329 2022-09-10T19:06:54Z S30Z 2 Created page with "{{Carinfo |name=1992 Handa NR750 |image=NR750_Front.jpg |make=Handa |type=Motorcycle |price=$62,600 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NR |rlname=Honda NR750 |limited=0 |electric=0 }} The 1992 Handa NR750 is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $62,600. ==Stats== The NR750 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=..." wikitext text/x-wiki {{Carinfo |name=1992 Handa NR750 |image=NR750_Front.jpg |make=Handa |type=Motorcycle |price=$62,600 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NR |rlname=Honda NR750 |limited=0 |electric=0 }} The 1992 Handa NR750 is a motorcycle produced by [[Handa]]. It can be purchased from the dealership for $62,600. ==Stats== The NR750 has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=125|tqval=48|whval=537|spdval=159|drv=RWD}} ==Gallery== <gallery> File:NR750_Rear.jpg|Rear view of the 1992 Handa NR750. File:NR750_Cluster.jpg|Gauge cluster of the 1992 Handa NR750. </gallery> 762d56664811cd7c89699433962f1e6628149923 1996 Kawisake Ninja ZX-7RR 0 1654 2330 2022-09-10T19:07:28Z S30Z 2 Created page with "{{Carinfo |name=1996 Kawisake Ninja ZX-7RR |image=ZX-7RR_Front.jpg |make=Kawisake |type=Motorcycle |price=$25,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-7R |rlname=Kawasaki Ninja ZX-7RR |limited=0 |electric=0 }} The 1996 Kawisake Ninja ZX-7RR is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $25,250. ==Stats== The ZX-7RR has 1 seat and a fuel capacity of 5 gallons. As a moto..." wikitext text/x-wiki {{Carinfo |name=1996 Kawisake Ninja ZX-7RR |image=ZX-7RR_Front.jpg |make=Kawisake |type=Motorcycle |price=$25,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Kawasaki_Ninja_ZX-7R |rlname=Kawasaki Ninja ZX-7RR |limited=0 |electric=0 }} The 1996 Kawisake Ninja ZX-7RR is a motorcycle produced by [[Kawisake]]. It can be purchased from the dealership for $25,250. ==Stats== The ZX-7RR has 1 seat and a fuel capacity of 5 gallons. As a motorcycle, it cannot be modified. {{Stockstats|hpval=134|tqval=59|whval=494|spdval=163|drv=RWD}} ==Gallery== <gallery> File:ZX-7RR_Rear.jpg|Rear view of the 1996 Kawisake Ninja ZX-7RR. File:ZX-7RR_Cluster.jpg|Gauge cluster of the 1996 Kawisake Ninja ZX-7RR. </gallery> c72b652013116cc76d9d9805af97c0c23dbf685c File:2021 Mustang GT Front.jpg 6 150 2331 254 2022-09-10T19:11:16Z S30Z 2 S30Z uploaded a new version of [[File:2021 Mustang GT Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2021 Mustang GT Rear.jpg 6 151 2332 255 2022-09-10T19:11:40Z S30Z 2 S30Z uploaded a new version of [[File:2021 Mustang GT Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard Mustang GT 0 153 2333 1732 2022-09-10T19:12:00Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Fard Mustang GT |image=2022_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2022 Fard Mustang GT. </gallery> 52e1e54d0125f218eb5e478b4c201c8fe9b3134a 2334 2333 2022-09-10T19:12:10Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2022 Fard Mustang GT. </gallery> 4f9e13bd280d2fb3fa943a5d92e13c8e80822639 2335 2334 2022-09-10T19:12:26Z S30Z 2 S30Z moved page [[2021 Fard Mustang GT]] to [[2022 Fard Mustang GT]] wikitext text/x-wiki {{Carinfo |name=2022 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2022 Fard Mustang GT. </gallery> 4f9e13bd280d2fb3fa943a5d92e13c8e80822639 2021 Fard Mustang GT 0 1655 2336 2022-09-10T19:12:26Z S30Z 2 S30Z moved page [[2021 Fard Mustang GT]] to [[2022 Fard Mustang GT]] wikitext text/x-wiki #REDIRECT [[2022 Fard Mustang GT]] 2bc3534c642496f2c1dfb146e433e063241c65d1 File:C8Vette Front.jpg 6 970 2337 1296 2022-09-10T19:14:46Z S30Z 2 S30Z uploaded a new version of [[File:C8Vette Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C8Vette Rear.jpg 6 969 2338 1295 2022-09-10T19:15:16Z S30Z 2 S30Z uploaded a new version of [[File:C8Vette Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C8Vette Engine.jpg 6 1656 2339 2022-09-10T19:15:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Chavy Corvette 0 974 2340 1300 2022-09-10T19:16:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Chavy Corvette |image=C8Vette_Front.jpg |make=Chavy |type=Coupe |price=$86,945 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2022 Chavy Corvette is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $86,945. ==Stats== The Corvette has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=495|tqval=504|whval=3366|spdval=189|drv=RWD}} {{Maxstats|hpval=1475|tqval=1433|whval=2866|spdval=258}} ==Gallery== <gallery> File:C8Vette_Rear.jpg|Rear view of the 2022 Chavy Corvette. File:C8Vette_Engine.jpg|Engine shot of the 2022 Chavy Corvette. </gallery> acd0b713afb97b6576470b3544260686c5585ef3 2341 2340 2022-09-10T19:16:34Z S30Z 2 S30Z moved page [[2021 Chavy Corvette C8]] to [[2022 Chavy Corvette]] wikitext text/x-wiki {{Carinfo |name=2022 Chavy Corvette |image=C8Vette_Front.jpg |make=Chavy |type=Coupe |price=$86,945 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2022 Chavy Corvette is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $86,945. ==Stats== The Corvette has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=495|tqval=504|whval=3366|spdval=189|drv=RWD}} {{Maxstats|hpval=1475|tqval=1433|whval=2866|spdval=258}} ==Gallery== <gallery> File:C8Vette_Rear.jpg|Rear view of the 2022 Chavy Corvette. File:C8Vette_Engine.jpg|Engine shot of the 2022 Chavy Corvette. </gallery> acd0b713afb97b6576470b3544260686c5585ef3 2021 Chavy Corvette C8 0 1657 2342 2022-09-10T19:16:34Z S30Z 2 S30Z moved page [[2021 Chavy Corvette C8]] to [[2022 Chavy Corvette]] wikitext text/x-wiki #REDIRECT [[2022 Chavy Corvette]] 8de0c0d4c29a870203eb4f892565060e0a6536e5 2017 Axura NSX 0 757 2343 1052 2022-09-10T19:19:24Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2017 Axura NSX |image=20NSX_Front.jpg |make=Axura |type=Super |price=$147,363 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NSX_(second_generation) |rlname=Acura NSX (2nd gen.) |limited=0 |electric=0 }} The 2017 Axura NSX is a supercar produced by [[Axura]]. It can be purchased from the dealership for $147,363. ==Stats== The NSX has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=571|tqval=485|whval=3878|spdval=198|drv=AWD}} {{Maxstats|hpval=1301|tqval=1244|whval=3378|spdval=235}} ==Gallery== <gallery> File:20NSX_Rear.jpg|Rear view of the 2017 Axura NSX. File:20NSX_Engine.jpg|Engine shot of the 2017 Axura NSX. </gallery> 04d50bad69583fbea3a6d218966f10779bd325f7 2347 2343 2022-09-10T19:20:32Z S30Z 2 S30Z moved page [[2020 Axura NSX]] to [[2017 Axura NSX]] wikitext text/x-wiki {{Carinfo |name=2017 Axura NSX |image=20NSX_Front.jpg |make=Axura |type=Super |price=$147,363 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_NSX_(second_generation) |rlname=Acura NSX (2nd gen.) |limited=0 |electric=0 }} The 2017 Axura NSX is a supercar produced by [[Axura]]. It can be purchased from the dealership for $147,363. ==Stats== The NSX has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=571|tqval=485|whval=3878|spdval=198|drv=AWD}} {{Maxstats|hpval=1301|tqval=1244|whval=3378|spdval=235}} ==Gallery== <gallery> File:20NSX_Rear.jpg|Rear view of the 2017 Axura NSX. File:20NSX_Engine.jpg|Engine shot of the 2017 Axura NSX. </gallery> 04d50bad69583fbea3a6d218966f10779bd325f7 File:20NSX Front.jpg 6 734 2344 1029 2022-09-10T19:19:47Z S30Z 2 S30Z uploaded a new version of [[File:20NSX Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20NSX Rear.jpg 6 733 2345 1028 2022-09-10T19:19:59Z S30Z 2 S30Z uploaded a new version of [[File:20NSX Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:20NSX Engine.jpg 6 1658 2346 2022-09-10T19:20:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Axura NSX 0 1659 2348 2022-09-10T19:20:32Z S30Z 2 S30Z moved page [[2020 Axura NSX]] to [[2017 Axura NSX]] wikitext text/x-wiki #REDIRECT [[2017 Axura NSX]] d7010d82e89e237dc6cf52e544ac8f6b310252f8 2021 Owdi R8 V10 0 760 2349 1055 2022-09-10T19:22:03Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Owdi R8 V10 |image=R8V10_Front.jpg |make=Owdi |type=Super |price=$209,090 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_R8_(Type_4S) |rlname=Audi R8 V10 |limited=0 |electric=0 }} The 2021 Owdi R8 V10 is a supercar produced by [[Owdi]]. It can be purchased from the dealership for $209,090. ==Stats== The R8 V10 has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=602|tqval=413|whval=3516|spdval=202|drv=AWD}} {{Maxstats|hpval=1243|tqval=1101|whval=3016|spdval=213}} ==Gallery== <gallery> File:R8V10_Rear.jpg|Rear view of the 2021 Owdi R8 V10. File:R8V10_Engine.jpg|Engine shot of the 2021 Owdi R8 V10. </gallery> c56f0cf84528389afb0776ab46be889c377d761f File:R8V10 Front.jpg 6 727 2350 1022 2022-09-10T19:23:36Z S30Z 2 S30Z uploaded a new version of [[File:R8V10 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R8V10 Rear.jpg 6 726 2351 1021 2022-09-10T19:24:09Z S30Z 2 S30Z uploaded a new version of [[File:R8V10 Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R8V10 Engine.jpg 6 725 2352 1020 2022-09-10T19:24:19Z S30Z 2 S30Z uploaded a new version of [[File:R8V10 Engine.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard F-450 Ambulance 0 288 2353 2168 2022-09-10T19:30:37Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Fard F-450 Ambulance |image=F450Amb_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2022 Fard F-450 Ambulance is an ambulance produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=11500|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450Amb_Rear.jpg|Rear view of the 2022 Fard F-450 Ambulance. </gallery> [[Category:Paramedic_vehicles]] 6e0f803f6a2ceb04b4c81088657626fc7d759f11 2354 2353 2022-09-10T19:31:14Z S30Z 2 S30Z moved page [[2020 Fard F-450 Ambulance]] to [[2022 Fard F-450 Ambulance]] wikitext text/x-wiki {{Carinfo |name=2022 Fard F-450 Ambulance |image=F450Amb_Front.jpg |make=Fard |type=Emergency |price=Free |avail=Given out to all players |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(fourteenth_generation) |rlname=Ford F-450 |limited=0 |electric=0 }} The 2022 Fard F-450 Ambulance is an ambulance produced by [[Fard]]. It is a complimentary vehicle given out to all Southwest Florida players. As a complimentary vehicle, it cannot be sold and does not take up any slots in the player's inventory. ==Stats== The F-450 Fast Response Unit has 7 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. As an emergency vehicle, it cannot be modified. {{Stockstats|hpval=475|tqval=1050|whval=11500|spdval=105|drv=RWD}} ==Gallery== <gallery> File:F450Amb_Rear.jpg|Rear view of the 2022 Fard F-450 Ambulance. </gallery> [[Category:Paramedic_vehicles]] 6e0f803f6a2ceb04b4c81088657626fc7d759f11 2020 Fard F-450 Ambulance 0 1660 2355 2022-09-10T19:31:14Z S30Z 2 S30Z moved page [[2020 Fard F-450 Ambulance]] to [[2022 Fard F-450 Ambulance]] wikitext text/x-wiki #REDIRECT [[2022 Fard F-450 Ambulance]] f4f27b4aafe782416141fabc19497ddc15d05e6c File:F450Amb Front.jpg 6 286 2356 451 2022-09-10T19:32:43Z S30Z 2 S30Z uploaded a new version of [[File:F450Amb Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F450Amb Rear.jpg 6 287 2357 452 2022-09-10T19:33:19Z S30Z 2 S30Z uploaded a new version of [[File:F450Amb Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2021 Mustang GTUnmarked Front.jpg 6 1324 2358 1746 2022-09-10T19:33:27Z S30Z 2 S30Z uploaded a new version of [[File:2021 Mustang GTUnmarked Front.jpg]] wikitext text/x-wiki pic taken by Aid 79474f01d24b29db50c147399c515041d7abcad7 File:2021 Mustang GTUnmarked Rear.jpg 6 1325 2359 1747 2022-09-10T19:33:45Z S30Z 2 S30Z uploaded a new version of [[File:2021 Mustang GTUnmarked Rear.jpg]] wikitext text/x-wiki == Summary == pic taken by Aid af891b12fb742c2edcf5d8ba9fd86fb85f48040c File:Spec 5 Front.png 6 1661 2360 2022-09-10T23:39:01Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spec 5 Rear.png 6 1662 2361 2022-09-10T23:40:06Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spec 5 Plate.png 6 1663 2362 2022-09-10T23:40:36Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Fard Mustang TRT Spec 5 0 1664 2363 2022-09-11T00:07:06Z HPtheamazing 9 Created page with "{{Carinfo|name=2022 Fard Mustang TRT Spec 5|image=Spec 5 Front.png|make=Fard|type=Coupe|price=$81,475|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_RTR#Mustang_RTR_Spec_5_10th_Anniversary_Edition_(2020-2021)|rlname=Ford Mustang RTR Spec 5 50th anniversary edition|limited=1|electric=0}} The 2022 Fard Mustang TRT Spec 5 was introduced into the game on September 10, 2022 and was available for a day and a half at about $81,475. As a limited vehicle, it doe..." wikitext text/x-wiki {{Carinfo|name=2022 Fard Mustang TRT Spec 5|image=Spec 5 Front.png|make=Fard|type=Coupe|price=$81,475|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_RTR#Mustang_RTR_Spec_5_10th_Anniversary_Edition_(2020-2021)|rlname=Ford Mustang RTR Spec 5 50th anniversary edition|limited=1|electric=0}} The 2022 Fard Mustang TRT Spec 5 was introduced into the game on September 10, 2022 and was available for a day and a half at about $81,475. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Mustang TRT Spec 5 seats 4 people and has a maximum fuel capacity of 16 gallons. {{Stockstats|hpval=750|tqval=610|whval=3,752|spdval=197|drv=RWD}}{{Maxstats|hpval=1,291|tqval=1,028|whval=3,252|spdval=206}} == Gallery == [[File:Spec 5 Rear.png|left|thumb|Rear view of the Fard Mustang TRT Spec 5]] [[File:Spec 5 Plate.png|center|thumb|Like some limiteds, the Fard Mustang TRT Spec 5 has it's own custom plate that currently isn't available on non-limited vehicles]] 7dcdaa87fbf32a61e00dada113baf3c354ed399b File:Z07 Front.png 6 1665 2364 2022-09-11T00:09:41Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2365 2364 2022-09-11T00:12:35Z HPtheamazing 9 HPtheamazing uploaded a new version of [[File:Z07 Front.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Z07 Rear.png 6 1666 2366 2022-09-11T00:13:58Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Chavy Corvette Z06 Z07 Package 0 1667 2367 2022-09-11T00:33:24Z HPtheamazing 9 Created page with "{{Carinfo|name=2023 Chavy Corvette Z06 Z07 Package|image=Z07 Front.png|make=Chavy|type=Super|price=$136,085|avail=Limited|rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C8)#Z06|rlname=Corvette C8 Z06 Z07|limited=1|electric=0}}The 2023 Chavy Corvette Z06 Z07 Package was introduced into the game on September 10, 2022 and was available for 3 days at about $136,085. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Corvette..." wikitext text/x-wiki {{Carinfo|name=2023 Chavy Corvette Z06 Z07 Package|image=Z07 Front.png|make=Chavy|type=Super|price=$136,085|avail=Limited|rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C8)#Z06|rlname=Corvette C8 Z06 Z07|limited=1|electric=0}}The 2023 Chavy Corvette Z06 Z07 Package was introduced into the game on September 10, 2022 and was available for 3 days at about $136,085. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Corvette Z06 Z07 seats 2 people and has a maximum fuel capacity of 19 gallons {{Stockstats|hpval=670|tqval=470|whval=3,441|spdval=189|drv=RWD}}{{Maxstats|hpval=1,285|tqval=1,090|whval=2,941|spdval=203}} == Gallery == [[File:Z07 Rear.png|left|thumb|Rear view of the Chavy Corvette Z06 Z07 ]] 1d3da58db3cf524dd325001280960e66d5dfec5e File:Type S Front.png 6 1668 2368 2022-09-11T00:40:55Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Type S Rear.png 6 1669 2369 2022-09-11T00:42:35Z HPtheamazing 9 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Axura NSX Type S 0 1670 2370 2022-09-11T00:54:18Z HPtheamazing 9 Created page with "{{Carinfo|name=2022 Axura NSX Type S|image=Type S Front.png|make=Axura|type=Super|price=$169,500|avail=Limited|rllink=https://en.wikipedia.org/wiki/Honda_NSX_(second_generation)#NSX_Type_S_(2022)|rlname=Honda NSX (2nd gen.)|limited=1|electric=0}} The 2022 Axura NSX Type S was introduced into the game on September 10, 2022 and was available for 2 days at about $169,500. As a limited vehicle, it does not occupy space in the player's inventory == Stats == The NSX Type S s..." wikitext text/x-wiki {{Carinfo|name=2022 Axura NSX Type S|image=Type S Front.png|make=Axura|type=Super|price=$169,500|avail=Limited|rllink=https://en.wikipedia.org/wiki/Honda_NSX_(second_generation)#NSX_Type_S_(2022)|rlname=Honda NSX (2nd gen.)|limited=1|electric=0}} The 2022 Axura NSX Type S was introduced into the game on September 10, 2022 and was available for 2 days at about $169,500. As a limited vehicle, it does not occupy space in the player's inventory == Stats == The NSX Type S seats 2 people and has a maximum fuel capacity of 16 gallons {{Stockstats|hpval=600|tqval=492|whval=3,803|spdval=196|drv=AWD}}{{Maxstats|hpval=1,328|tqval=1,270|whval=3,303|spdval=229}} == Gallery == [[File:Type S Rear.png|left|thumb|Rear view of the NSX Type S]] 8f8ad81933b2c7d6bc5327471f560d759a6f61c3 2022 Fard Mustang GT 0 153 2371 2335 2022-09-11T01:13:01Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Fard Mustang GT |image=2021_Mustang_GT_Front.jpg |make=Fard |type=Coupe |price=$43,980 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Mustang GT is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $43,980. ==Stats== The Mustang GT has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=462|tqval=572|whval=3706|spdval=156|drv=RWD}} {{Maxstats|hpval=1154|tqval=919|whval=3206|spdval=185}} ==Gallery== <gallery> File:2021_Mustang_GT_Rear.jpg|Rear view of the 2022 Fard Mustang GT. </gallery> 17f639cf5993a2c9a93986c81a6383380657f34a 2019 Chavy Corvette Z06 0 411 2372 623 2022-09-11T01:21:03Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2019 Chavy Corvette Z06|image=c7z06_front.jpg|make=Chavy|type=Coupe|price=$68,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C7)#Z06|rlname=2019 Chevrolet Corvette Z06 (C7)|limited=0|electric=0}} The C7 Corvette is the 7th generation of the iconic Corvette sports car produced by [[Chavy]]. It can be purchased from the dealership for $68,998. == Stats == The Corvette has two seats and a maximum fuel capacity of 18 gallons. {{Stockstats|hpval=650|tqval=650|whval=3,523|spdval=185|drv=RWD}}{{Maxstats|hpval=1,184|tqval=804|whval=3,023|spdval=199}} == Gallery == <gallery> File:C7z06 rear.jpg|The rear view of the Corvette Z06. </gallery> bf9a3e23281dcf00383f0202759c79234f7cf247 File:TRTSpec3 Front.jpg 6 1671 2373 2022-09-11T01:34:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRTSpec3 Rear.jpg 6 1672 2374 2022-09-11T01:34:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT350R Front.jpg 6 1673 2375 2022-09-11T01:35:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT350R Rear.jpg 6 1674 2376 2022-09-11T01:35:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C8VetteZ06 Front.jpg 6 1675 2377 2022-09-11T01:36:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C8VetteZ06 Rear.jpg 6 1676 2378 2022-09-11T01:36:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 Fard Mustang GT350R 0 1677 2379 2022-09-11T01:36:52Z S30Z 2 Created page with " {{Carinfo |name=2017 Fard Mustang GT350R |image=GT350R_Front.jpg |make=Fard |type=Coupe |price=$71,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2017 Fard Mustang GT350R is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $71,250. ==Stats== The Mustang GT350R has 2 seats and a fuel capacity of 16 gallons..." wikitext text/x-wiki {{Carinfo |name=2017 Fard Mustang GT350R |image=GT350R_Front.jpg |make=Fard |type=Coupe |price=$71,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2017 Fard Mustang GT350R is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $71,250. ==Stats== The Mustang GT350R has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=526|tqval=429|whval=3662|spdval=172|drv=RWD}} {{Maxstats|hpval=1222|tqval=1029|whval=3162|spdval=202}} ==Gallery== <gallery> File:GT350R_Rear.jpg|Rear view of the 2017 Fard Mustang GT350R. </gallery> 4bb43f374796ed9cce3fc00f7bcdd52be07e2734 2022 Fard Mustang TRT Spec 3 0 1678 2380 2022-09-11T01:37:26Z S30Z 2 Created page with " {{Carinfo |name=2022 Fard Mustang TRT Spec 3 |image=TRTSpec3_Front.jpg |make=Fard |type=Coupe |price=$66,975 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Mustang TRT Spec 3 is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $66,975. ==Stats== The Mustang TRT Spec 3 has 4 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=2022 Fard Mustang TRT Spec 3 |image=TRTSpec3_Front.jpg |make=Fard |type=Coupe |price=$66,975 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation) |rlname=Ford Mustang (6th gen.) |limited=0 |electric=0 }} The 2022 Fard Mustang TRT Spec 3 is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $66,975. ==Stats== The Mustang TRT Spec 3 has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=750|tqval=610|whval=3752|spdval=200|drv=RWD}} {{Maxstats|hpval=1382|tqval=1100|whval=3252|spdval=211}} ==Gallery== <gallery> File:TRTSpec3_Rear.jpg|Rear view of the 2022 Fard Mustang TRT Spec 3. </gallery> 126cd16b8d9165aefeeaf9b61c9d57adbae82ab9 2023 Chavy Corvette Z06 0 1679 2381 2022-09-11T01:37:57Z S30Z 2 Created page with "{{Carinfo |name=2023 Chavy Corvette Z06 |image=C8VetteZ06_Front.jpg |make=Chavy |type=Super |price=$106,395 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2023 Chavy Corvette Z06 is a supercar produced by [[Chavy]]. It can be purchased from the dealership for $106,395. ==Stats== The Corvette Z06 has 2 seats and..." wikitext text/x-wiki {{Carinfo |name=2023 Chavy Corvette Z06 |image=C8VetteZ06_Front.jpg |make=Chavy |type=Super |price=$106,395 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette#Eighth_generation_(C8;_2020%E2%80%93present) |rlname=Chevrolet Corvette (C8) |limited=0 |electric=0 }} The 2023 Chavy Corvette Z06 is a supercar produced by [[Chavy]]. It can be purchased from the dealership for $106,395. ==Stats== The Corvette Z06 has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=670|tqval=470|whval=3441|spdval=194|drv=RWD}} {{Maxstats|hpval=1698|tqval=1441|whval=2914|spdval=245}} ==Gallery== <gallery> File:C8VetteZ06_Rear.jpg|Rear view of the 2023 Chavy Corvette Z06. </gallery> 9693a96c9a504c27ad243207743e712c1f1cceea 2017 Dodje Viper ACR Extreme 0 1680 2382 2022-09-11T02:12:33Z Cheemsthethird 10 Created page with "{{Carinfo|name=2017 Dodje Viper ACR Extreme|image=13ACR_Front.jpg|make=Dodje|type=Coupe|price=$277,888|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR|rlname=Dodge Viper ACR Extreme|limited=1|electric=0}} The 2017 Dodje Viper ACR Extreme is a high performance track focused sportscar manufactured by [[Dodje]]. It is the limited version of the [[2017 Dodje Viper SRT]]. Its estimated price was $277,888..." wikitext text/x-wiki {{Carinfo|name=2017 Dodje Viper ACR Extreme|image=13ACR_Front.jpg|make=Dodje|type=Coupe|price=$277,888|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR|rlname=Dodge Viper ACR Extreme|limited=1|electric=0}} The 2017 Dodje Viper ACR Extreme is a high performance track focused sportscar manufactured by [[Dodje]]. It is the limited version of the [[2017 Dodje Viper SRT]]. Its estimated price was $277,888 and it can no longer be purchased at the dealership as it was a limited car. == Stats == The Viper ACR Extreme has two seats and a maximum fuel capacity of 16 gallons {{Stockstats|hpval=645|tqval=600|whval=3,393|spdval=210|drv=RWD}}{{Maxstats|hpval=1,355|tqval=978|whval=2,893|spdval=230}} == Gallery == 4d43b297fb88bfcef68c43cf3be99eaa2a5a792c File:NLine Rear.jpg 6 1681 2383 2022-09-11T02:22:00Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Hayunai Sonata N-Line 0 1682 2384 2022-09-11T02:38:10Z Cheemsthethird 10 Created page with "{{Carinfo|name=2021 Hayunai Sonata N-Line|image=NLine_Front.jpg|make=Hayunai|type=Sedan|price=N/A|avail=Can be obtained through a code.|rllink=https://en.wikipedia.org/wiki/Hyundai_Sonata#N_Line|rlname=Hyundai Sonata N-Line|limited=1|electric=0}} The 2021 Hayunai Sonata N-Line is a sporty 4 door sedan manufactured by [[Hayunai]]. It is the sportier version of the [[2021 Hayunai Sonata Hybrid]]. It cannot be purchased at the dealership and can only be obtained through a..." wikitext text/x-wiki {{Carinfo|name=2021 Hayunai Sonata N-Line|image=NLine_Front.jpg|make=Hayunai|type=Sedan|price=N/A|avail=Can be obtained through a code.|rllink=https://en.wikipedia.org/wiki/Hyundai_Sonata#N_Line|rlname=Hyundai Sonata N-Line|limited=1|electric=0}} The 2021 Hayunai Sonata N-Line is a sporty 4 door sedan manufactured by [[Hayunai]]. It is the sportier version of the [[2021 Hayunai Sonata Hybrid]]. It cannot be purchased at the dealership and can only be obtained through a now expired code that was given out during the Fall Update of 2021. As a code car, it does not have a price. == Stats == The Sonata N-Line has 5 seats and a maximum fuel capacity of 16 gallons. {{Stockstats|hpval=290|tqval=311|whval=3,552|spdval=153|drv=FWD}}{{Maxstats|hpval=1,191|tqval=1,408|whval=3,052|spdval=246}} == Gallery == [[File:NLine Rear.jpg|left|thumb|The rear view of the Sonata N-Line]] fe484a3f39452c003f5e583f08ea442bfd525dd0 File:Exorcist Rear.jpg 6 1683 2385 2022-09-11T03:00:54Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2018 Chavy Camaro ZL1 "The Exorcist" 0 1684 2386 2022-09-11T03:01:41Z Cheemsthethird 10 Created page with "{{Carinfo|name=2018 Chavy Camaro ZL1 "The Exorcist"|image=Exorcist_Front.jpg|make=Chavy|type=Coupe|price=N/A|avail=Can be obtained after finishing the Halloween Event.|rllink=https://en.wikipedia.org/wiki/Hennessey_Performance_Engineering#Hennessey_Exorcist|rlname=Chevrolet Camaro ZL1 "The Exorcist"|limited=1|electric=0}} The 2018 Chavy Camaro ZL1 "The Exorcist" is a modified high-performance sportscar manufactured by [[Chavy]]. It is the highly modified version of the..." wikitext text/x-wiki {{Carinfo|name=2018 Chavy Camaro ZL1 "The Exorcist"|image=Exorcist_Front.jpg|make=Chavy|type=Coupe|price=N/A|avail=Can be obtained after finishing the Halloween Event.|rllink=https://en.wikipedia.org/wiki/Hennessey_Performance_Engineering#Hennessey_Exorcist|rlname=Chevrolet Camaro ZL1 "The Exorcist"|limited=1|electric=0}} The 2018 Chavy Camaro ZL1 "The Exorcist" is a modified high-performance sportscar manufactured by [[Chavy]]. It is the highly modified version of the [[2018 Chavy Camaro ZL1 1LE]], and it was modified by [[Ethanol]]. It cannot be purchased through the dealership and can only be obtained after collecting all the pumpkins during the Halloween Event of 2021. As an event car, it did not have a price. == Stats == The Exorcist has 4 seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=1000|tqval=883|whval=4,113|spdval=216|drv=RWD}}{{Maxstats|hpval=1,656|tqval=1,297|whval=3,318|spdval=237}} == Gallery == 19fe2de64fe52ffb481dde21871842045cf9b9ca 2387 2386 2022-09-11T03:02:16Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=2018 Chavy Camaro ZL1 "The Exorcist"|image=Exorcist_Front.jpg|make=Chavy|type=Coupe|price=N/A|avail=Can be obtained after finishing the Halloween Event.|rllink=https://en.wikipedia.org/wiki/Hennessey_Performance_Engineering#Hennessey_Exorcist|rlname=Chevrolet Camaro ZL1 "The Exorcist"|limited=1|electric=0}} The 2018 Chavy Camaro ZL1 "The Exorcist" is a modified high-performance sportscar manufactured by [[Chavy]]. It is the highly modified version of the [[2018 Chavy Camaro ZL1 1LE]], and it was modified by [[Ethanol]]. It cannot be purchased through the dealership and can only be obtained after collecting all the pumpkins during the Halloween Event of 2021. As an event car, it did not have a price. == Stats == The Exorcist has 4 seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=1000|tqval=883|whval=4,113|spdval=216|drv=RWD}}{{Maxstats|hpval=1,656|tqval=1,297|whval=3,318|spdval=237}} == Gallery == [[File:Exorcist Rear.jpg|left|thumb|The rear view of The Exorcist.]] a2fcc9a4780459ca1aa3880b46586e59c496ab00 Help Wanted 0 1399 2388 2149 2022-09-11T04:00:07Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1987 Pohrse 930 Slantnose 1982 AMC Delorean 2016 Pohrse 911 R 881043298deb1eea228af90ab614a3a871d2579e Tuning 0 1685 2389 2022-09-11T05:32:58Z S30Z 2 Created page with "Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Re..." wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} 623884a182c4cc16af4daf407544020a382c1b56 2391 2389 2022-09-11T07:31:36Z S30Z 2 wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. 18dddded4ec846ff5f8beefb8b7213e9cb00b7a5 2392 2391 2022-09-12T04:02:21Z S30Z 2 wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning.]'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. 706c2d7006139a0ef6143746b003218c7cc6c8f2 Main Page 0 1 2390 2284 2022-09-11T05:34:18Z S30Z 2 /* Quick Links */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===For editors=== [[Guides]] 9556a234ac8f06e67535345abcc5a6a52d78802d Template:Cl 10 1720 2462 2461 2022-09-12T22:29:43Z S30Z 2 1 revision imported wikitext text/x-wiki #REDIRECT [[Template:Category link]] {{R from move}} f79fddc38797fc163b6e6ddeb4377afbea7d0cfc Template:Clc 10 1755 2532 2531 2022-09-12T22:29:53Z S30Z 2 1 revision imported wikitext text/x-wiki #REDIRECT [[Template:Category link with count]] 02280e2ab57b544236e11f913e3759c5781ca9d5 Template:Cob 10 1762 2546 2545 2022-09-12T22:29:54Z S30Z 2 1 revision imported wikitext text/x-wiki #REDIRECT [[Template:Collapse bottom]] 414179c04bb216d1df3d18596af4673de10bb273 Template:Cot 10 1763 2548 2547 2022-09-12T22:29:54Z S30Z 2 1 revision imported wikitext text/x-wiki #REDIRECT [[Template:Collapse top]] {{Redirect category shell| {{R from template shortcut}} }} 708f8bf79aefbfe8ee62f4fa68561059be0372d2 Template:Carinfo 10 25 2555 1654 2022-09-12T22:46:14Z S30Z 2 wikitext text/x-wiki [[File:{{{img|{{{image}}}}}}|200px]] {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> af7f46f9970f684fabb05bda64f36634dd65017a 2556 2555 2022-09-12T22:47:38Z S30Z 2 wikitext text/x-wiki [[File:{{{img|{{{image}}}}}}|thumb]] {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> bba8f6c379ea8dbba8311f58388cef0962f825ed 2559 2556 2022-09-12T22:54:29Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 1e93680562d315cfee18b1774c0ea1ea0759ee81 Module:Excerpt/portals 828 1768 2563 2562 2022-09-12T23:16:38Z S30Z 2 1 revision imported from [[:wikipedia:Module:Excerpt/portals]] Scribunto text/plain -- ATTENTION ! -- Prefer Module:Excerpt whenever possible -- Name of the category to track content pages with errors local errorCategory = "Articles with broken excerpts" -- Error messages local errorMessages = { prefix = "Excerpt error: ", noPage = "No page given", pageNotFound = "Page '%s' not found", leadEmpty = "Lead section is empty", sectionEmpty = "Section '%s' is empty", sectionNotFound = "Section '%s' not found", fragmentEmpty = "Fragment '%s' is empty", fragmentNotFound = "Fragment '%s' not found" } -- Regular expressions to match all aliases of the file namespace local fileNamespaces = { "[Ff]ile", "[Ii]mage" } -- Regular expressions to match all image parameters local imageParams = { {"thumb", "thumbnail", "frame", "framed", "frameless"}, {"right", "left", "center", "none"}, {"baseline", "middle", "sub", "super", "text-top", "text-bottom", "top", "bottom"} } -- Regular expressions to match all infobox parameters for image captions local captionParams = { "[^=|]*[Cc]aption[^=|]*", "[^=|]*[Ll]egend[^=|]*" } -- Regular expressions to match all inline templates that are undesirable in excerpts local unwantedInlineTemplates = { "[Ee]fn", "[Ee]fn%-[lu][arg]", "[Ee]fn [%a ]-", "[Ee]l[mn]", "[Rr]p?", "[Ss]fn[bmp]", "[Ss]f[bn]", "[Nn]ote[Tt]ag", "#[Tt]ag:%s*[Rr]ef", "[Rr]efn?", "[CcDd]n", "[Cc]itation[%- _]needed", "[Dd]isambiguation needed", "[Ff]eatured article", "[Gg]ood article", "[Dd]ISPLAYTITLE", "[Ss]hort[ _]+description", "[Cc]itation", "[Cc]ite[%- _]+[%w_%s]-", "[Cc]oor[%w_%s]-", "[Uu]?n?[Rr]eliable source[%?%w_%s]-", "[Rr]s%??", "[Vv]c", "[Vv]erify credibility", "[Bb]y[ _]*[Ww]ho[m]*%??", "[Ww]ikisource[ -_]*multi", "[Ii]nflation[ _/-]*[Ff]n", "[Bb]iblesource", -- aliases for Clarification needed "[Cc]f[ny]", "[Cc]larification[ _]+inline", "[Cc]larification[%- _]*needed", "[Cc]larification", "[Cc]larify%-inline", "[Cc]larify%-?me", "[Cc]larify[ _]+inline", "[Cc]larify", "[Cc]LARIFY", "[Cc]onfusing%-inline", "[Cc]onfusing%-short", "[Ee]xplainme", "[Hh]uh[ _]*%??", "[Ww]hat%?", "[Ii]nline[ _]+[Uu]nclear", "[Ii]n[ _]+what[ _]+sense", "[Oo]bscure", "[Pp]lease[ _]+clarify", "[Uu]nclear[ _]+inline", "[Ww]hat's[ _]+this%?", "[Gg]eoQuelle", "[Nn]eed[s]+[%- _]+[Ii][Pp][Aa]", "[Ii]PA needed", -- aliases for Clarification needed lead "[Cc]itation needed %(?lea?de?%)?", "[Cc]nl", "[Ff]act %(?lea?de?%)?", "[Ll]ead citation needed", "[Nn]ot in body", "[Nn]ot verified in body", -- Primary source etc. "[Pp]s[ci]", "[Nn]psn", "[Nn]on%-primary[ _]+source[ _]+needed", "[Ss]elf%-published[%w_%s]-", "[Uu]ser%-generated[%w_%s]-", "[Pp]rimary source[%w_%s]-", "[Ss]econdary source[%w_%s]-", "[Tt]ertiary source[%w_%s]-", "[Tt]hird%-party[%w_%s]-", -- aliases for Disambiguation (page) and similar "[Bb]egriffsklärung", "[Dd][Aa][Bb]", "[Dd]big", "[%w_%s]-%f[%w][Dd]isam[%w_%s]-", "[Hh][Nn][Dd][Ii][Ss]", -- aliases for Failed verification "[Bb]adref", "[Ff]aile?[ds] ?[rv][%w_%s]-", "[Ff][Vv]", "[Nn][Ii]?[Cc][Gg]", "[Nn]ot ?in ?[crs][%w_%s]-", "[Nn]ot specifically in source", "[Vv]erification[%- _]failed", -- aliases for When "[Aa]s[ _]+of[ _]+when%??", "[Aa]s[ _%-]+of%??", "[Cc]larify date", "[Dd]ate[ _]*needed", "[Nn]eeds?[ _]+date", "[Rr]ecently", "[Ss]ince[ _]+when%??", "[Ww]HEN", "[Ww]hen%??", -- aliases for Update "[Nn]ot[ _]*up[ _]*to[ _]*date","[Oo]u?[Tt][Dd]","[Oo]ut[%- _]*o?f?[%- _]*dated?", "[Uu]pdate", "[Uu]pdate[ _]+sect", "[Uu]pdate[ _]+Watch", -- aliases for Pronunciation needed "[Pp]ronunciation%??[%- _]*n?e?e?d?e?d?", "[Pp]ronounce", "[Rr]equested[%- _]*pronunciation", "[Rr]e?q?pron", "[Nn]eeds[%- _]*pronunciation", -- Chart, including Chart/start etc. "[Cc]hart", "[Cc]hart/[%w_%s]-", -- Cref and others "[Cc]ref2?", "[Cc]note", -- Explain and others "[Ee]xplain", "[Ff]urther[ ]*explanation[ ]*needed", "[Ee]laboration[ ]*needed", "[Ee]xplanation[ ]*needed", -- TOC templates "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Tt][Oo][Cc][8]*[5]*", "[Tt][Oo][Cc]", "09[Aa][Zz]", "[Tt][Oo][Cc][ ]*[Cc][Oo][Mm][Pp][Aa][Cc][Tt]", "[Tt][Oo][Cc][ ]*[Ss][Mm][Aa][Ll][Ll]", "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Aa][Ll][Pp][Hh][Aa][Bb][Ee][Tt][Ii][Cc][ _]*[Tt][Oo][Cc]", "DEFAULTSORT:.-", "[Oo]ne[ _]+source", "[Cc]ontains[ _]+special[ _]+characters", "[Ii]nfobox[ _]+Chinese" } -- Regular expressions to match all block templates that are desirable in excerpts local wantedBlockTemplates = { "[Bb]asketball[ _]roster[ _]header", "[Cc]abinet[ _]table[^|}]*", "[Cc]hart[^|}]*", "[Cc]lear", "[Cc]ol[^|}]*", -- all column templates "COVID-19[ _]pandemic[ _]data[^|}]*", "[Cc]ycling[ _]squad[^|}]*", "[Dd]ynamic[ _]list", "[Ee]lection[ _]box[^|}]*", "[Gg]allery", "[Gg]raph[^|}]*", "[Hh]idden", "[Hh]istorical[ _]populations", "[Ll]egend[ _]inline", "[Pp]lainlist", "[Pp]layer[^|}]*", "[Ss]eries[ _]overview", "[Ss]ide[ _]box", "[Ss]witcher", "[Tt]ree[ _]chart[^|}]*", "[Tt]elevision[ _]ratings[ _]graph" } local yesno = require('Module:Yesno') local p = {} -- Helper function to test for truthy and falsy values local function is(value) if not value or value == "" or value == "0" or value == "false" or value == "no" then return false end return true end -- Error handling function -- Throws a Lua error or returns an empty string if error reporting is disabled errors = true -- show errors by default local function luaError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) error(message, 2) end -- Error handling function -- Returns a wiki friendly error or an empty string if error reporting is disabled local function wikiError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) message = errorMessages.prefix .. message if mw.title.getCurrentTitle().isContentPage then local errorCategory = mw.title.new(errorCategory, 'Category') if errorCategory then message = message .. '[[' .. errorCategory.prefixedText .. ']]' end end message = mw.html.create('div'):addClass('error'):wikitext(message) return message end -- Helper function to match from a list regular expressions -- Like so: match pre..list[1]..post or pre..list[2]..post or ... local function matchAny(text, pre, list, post, init) local match = {} for i = 1, #list do match = { mw.ustring.match(text, pre .. list[i] .. post, init) } if match[1] then return unpack(match) end end return nil end -- Helper function to convert imagemaps into standard images local function convertImageMap(imagemap) local image = matchAny(imagemap, "[>\n]%s*", fileNamespaces, "[^\n]*") if image then return "<!--imagemap-->[[" .. mw.ustring.gsub(image, "[>\n]%s*", "", 1) .. "]]" else return "" -- remove entire block if image can't be extracted end end -- Helper function to convert a comma-separated list of numbers or min-max ranges into a list of booleans -- For example: "1,3-5" to {1=true,2=false,3=true,4=true,5=true} local function numberFlags(str) if not str then return {} end local flags = {} local ranges = mw.text.split(str, ",") -- parse ranges: "1,3-5" to {"1","3-5"} for _, r in pairs(ranges) do local min, max = mw.ustring.match(r, "^%s*(%d+)%s*[-–—]%s*(%d+)%s*$") -- "3-5" to min=3 max=5 if not max then min, max = mw.ustring.match(r, "^%s*((%d+))%s*$") end -- "1" to min=1 max=1 if max then for p = min, max do flags[p] = true end end end return flags end -- Helper function to convert template arguments into an array of arguments fit for get() local function parseArgs(frame) local args = {} for key, value in pairs(frame:getParent().args) do args[key] = value end for key, value in pairs(frame.args) do args[key] = value end -- args from a Lua call have priority over parent args from template args.paraflags = numberFlags(args["paragraphs"] or "") -- parse paragraphs: "1,3-5" to {"1","3-5"} args.fileflags = numberFlags(args["files"] or "") -- parse file numbers return args end -- simulate {{Airreg}} without the footnote, given "N|485US|," or similar local function airreg(p) local s = mw.text.split(p, "%s*|%s*") if s[1] ~= "N" and s[1] ~= "HL" and s[1] ~= "JA" then s[1]=s[1] .. "-" end return table.concat(s, "") end -- Helper function to remove unwanted templates and pseudo-templates such as #tag:ref and DEFAULTSORT local function stripTemplate(t) -- If template is unwanted then return "" (gsub will replace by nothing), else return nil (gsub will keep existing string) if matchAny(t, "^{{%s*", unwantedInlineTemplates, "%s*%f[|}]") then return "" end -- If template is wanted but produces an unwanted reference then return the string with |Note=, |ref or |shortref removed local noRef = mw.ustring.gsub(t, "|%s*Note%s*=.-%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*ref%s*%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*shortref%s*%f[|}]", "") -- If a wanted template has unwanted nested templates, purge them too noRef = mw.ustring.sub(noRef, 1, 2) .. mw.ustring.gsub(mw.ustring.sub(noRef, 3), "%b{}", stripTemplate) -- Replace {{audio}} by its text parameter: {{Audio|Foo.ogg|Bar}} → Bar noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]udio.-|.-|(.-)%f[|}].*", "%1") -- Replace {{Nihongo foot}} by its text parameter: {{Nihongo foot|English|英語|eigo}} → English noRef = mw.ustring.gsub(noRef, "^{{%s*[Nn]ihongo[ _]+foot%s*|(.-)%f[|}].*", "%1") -- Replace {{Airreg}} by its text parameter: {{Airreg|N|485US|,}} → N485US, noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]irreg%s*|%s*(.-)}}", airreg) if noRef ~= t then return noRef end return nil -- not an unwanted template: keep end -- Get a page's content, following redirects -- Also returns the page name, or the target page name if a redirect was followed, or false if no page found -- For file pages, returns the content of the file description page local function getContent(page) local title = mw.title.new(page) if not title then return false, false end local target = title.redirectTarget if target then title = target end return title:getContent(), title.prefixedText end -- Get the tables only local function getTables(text, options) local tables = {} for candidate in mw.ustring.gmatch(text, "%b{}") do if mw.ustring.sub(candidate, 1, 2) == '{|' then table.insert(tables, candidate) end end return table.concat(tables, '\n') end -- Get the lists only local function getLists(text, options) local lists = {} for list in mw.ustring.gmatch(text, "\n[*#][^\n]+") do table.insert(lists, list) end return table.concat(lists, '\n') end -- Check image for suitability local function checkImage(image) local page = matchAny(image, "", fileNamespaces, "%s*:[^|%]]*") -- match File:(name) or Image:(name) if not page then return false end -- Limit to image types: .gif, .jpg, .jpeg, .png, .svg, .tiff, .xcf (exclude .ogg, audio, etc.) local fileTypes = {"[Gg][Ii][Ff]", "[Jj][Pp][Ee]?[Gg]", "[Pp][Nn][Gg]", "[Ss][Vv][Gg]", "[Tt][Ii][Ff][Ff]", "[Xx][Cc][Ff]"} if not matchAny(page, "%.", fileTypes, "%s*$") then return false end -- Check the local wiki local fileDescription, fileTitle = getContent(page) -- get file description and title after following any redirect if not fileTitle or fileTitle == "" then return false end -- the image doesn't exist -- Check Commons if not fileDescription or fileDescription == "" then local frame = mw.getCurrentFrame() fileDescription = frame:preprocess("{{" .. fileTitle .. "}}") end -- Filter non-free images if not fileDescription or fileDescription == "" or mw.ustring.match(fileDescription, "[Nn]on%-free") then return false end return true end -- Attempt to parse [[File:...]] or [[Image:...]], either anywhere (start=false) or at the start only (start=true) local function parseImage(text, start) local startre = "" if start then startre = "^" end -- a true flag restricts search to start of string local image = matchAny(text, startre .. "%[%[%s*", fileNamespaces, "%s*:.*") -- [[File: or [[Image: ... if image then image = mw.ustring.match(image, "%b[]%s*") -- matching [[...]] to handle wikilinks nested in caption end return image end -- Parse a caption, which ends at a | (end of parameter) or } (end of infobox) but may contain nested [..] and {..} local function parseCaption(caption) if not caption then return nil end local length = mw.ustring.len(caption) local position = 1 while position <= length do local linkStart, linkEnd = mw.ustring.find(caption, "%b[]", position) linkStart = linkStart or length + 1 -- avoid comparison with nil when no link local templateStart, templateEnd = mw.ustring.find(caption, "%b{}", position) templateStart = templateStart or length + 1 -- avoid comparison with nil when no template local argEnd = mw.ustring.find(caption, "[|}]", position) or length + 1 if linkStart < templateStart and linkStart < argEnd then position = linkEnd + 1 -- skip wikilink elseif templateStart < argEnd then position = templateEnd + 1 -- skip template else -- argument ends before the next wikilink or template return mw.ustring.sub(caption, 1, argEnd - 1) end end return caption -- No terminator found: return entire caption end -- Attempt to construct a [[File:...]] block from {{infobox ... |image= ...}} local function argImage(text) local token = nil local hasNamedArgs = mw.ustring.find(text, "|") and mw.ustring.find(text, "=") if not hasNamedArgs then return nil end -- filter out any template that obviously doesn't contain an image -- ensure image map is captured text = mw.ustring.gsub(text, '<!%-%-imagemap%-%->', '|imagemap=') -- find all images local hasImages = false local images = {} local captureFrom = 1 while captureFrom < mw.ustring.len(text) do local argname, position, image = mw.ustring.match(text, "|%s*([^=|]-[Ii][Mm][Aa][Gg][Ee][^=|]-)%s*=%s*()(.*)", captureFrom) if image then -- ImageCaption=, image_size=, image_upright=, etc. do not introduce an image local lcArgName = mw.ustring.lower(argname) if mw.ustring.find(lcArgName, "caption") or mw.ustring.find(lcArgName, "size") or mw.ustring.find(lcArgName, "upright") then image = nil end end if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|]-[Pp][Hh][Oo][Tt][Oo][^=|]-%s*=%s*()(.*)", captureFrom) if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|{}]-%s*=%s*()%[?%[?([^|{}]*%.%a%a%a%a?)%s*%f[|}]", captureFrom) if image then hasImages = true if not images[position] then images[position] = image end captureFrom = position else captureFrom = mw.ustring.len(text) end end if not hasImages then return nil end -- find all captions local captions = {} captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, caption = matchAny(text, "|%s*", captionParams, "%s*=%s*()([^\n]+)", captureFrom) if caption then -- extend caption to parse "| caption = Foo {{Template\n on\n multiple lines}} Bar\n" local bracedCaption = mw.ustring.match(text, "^[^\n]-%b{}[^\n]+", position) if bracedCaption and bracedCaption ~= "" then caption = bracedCaption end caption = mw.text.trim(caption) local captionStart = mw.ustring.sub(caption, 1, 1) if captionStart == '|' or captionStart == '}' then caption = nil end end if caption then -- find nearest image, and use same index for captions table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not captions[i] then captions[i] = parseCaption(caption) end end end captureFrom = position else captureFrom = mw.ustring.len(text) end end -- find all alt text local altTexts = {} for position, altText in mw.ustring.gmatch(text, "|%s*[Aa][Ll][Tt]%s*=%s*()([^\n]*)") do if altText then -- altText is terminated by }} or |, but first skip any matched [[...]] and {{...}} local lookFrom = math.max( -- find position after whichever comes last: start of string, end of last ]] or end of last }} mw.ustring.match(altText, ".*{%b{}}()") or 1, -- if multiple {{...}}, .* consumes all but one, leaving the last for %b mw.ustring.match(altText, ".*%[%b[]%]()") or 1) local length = mw.ustring.len(altText) local afterText = math.min( -- find position after whichever comes first: end of string, }} or | mw.ustring.match(altText, "()}}", lookFrom) or length+1, mw.ustring.match(altText, "()|", lookFrom) or length+1) altText = mw.ustring.sub(altText, 1, afterText-1) -- chop off |... or }}... which is not part of [[...]] or {{...}} altText = mw.text.trim(altText) local altTextStart = mw.ustring.sub(altText, 1, 1) if altTextStart == '|' or altTextStart == '}' then altText = nil end end if altText then -- find nearest image, and use same index for altTexts table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not altTexts[i] then altTexts[i] = altText end end end end end -- find all image sizes local imageSizes = {} for position, imageSizeMatch in mw.ustring.gmatch(text, "|%s*[Ii][Mm][Aa][Gg][Ee][ _]?[Ss][Ii][Zz][Ee]%s*=%s*()([^}|\n]*)") do local imageSize = mw.ustring.match(imageSizeMatch, "=%s*([^}|\n]*)") if imageSize then imageSize = mw.text.trim(imageSize ) local imageSizeStart = mw.ustring.sub(imageSize, 1, 1) if imageSizeStart == '|' or imageSizeStart == '}' then imageSize = nil end end if imageSize then -- find nearest image, and use same index for imageSizes table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not imageSizes[i] then imageSizes[i] = imageSize end end end end end -- sort the keys of the images table (in a table sequence), so that images can be iterated over in order local keys = {} for key, val in pairs(images) do table.insert(keys, key) end table.sort(keys) -- add in relevant optional parameters for each image: caption, alt text and image size local imageTokens = {} for _, index in ipairs(keys) do local image = images[index] local token = parseImage(image, true) -- look for image=[[File:...]] etc. if not token then image = mw.ustring.match(image, "^[^}|\n]*") -- remove later arguments token = "[[" -- Add File: unless name already begins File: or Image: if not matchAny(image, "^", fileNamespaces, "%s*:") then token = token .. "File:" end token = token .. image local caption = captions[index] if caption and mw.ustring.match(caption, "%S") then token = token .. "|" .. caption end local alt = altTexts[index] if alt then token = token .. "|alt=" .. alt end local image_size = imageSizes[index] if image_size and mw.ustring.match(image_size, "%S") then token = token .. "|" .. image_size end token = token .. "]]" end token = mw.ustring.gsub(token, "\n","") .. "\n" table.insert(imageTokens, token) end return imageTokens end local function modifyImage(image, fileArgs) if fileArgs then for _, filearg in pairs(mw.text.split(fileArgs, "|")) do -- handle fileArgs=left|border etc. local fa = mw.ustring.gsub(filearg, "=.*", "") -- "upright=0.75" → "upright" local group = {fa} -- group of "border" is ["border"]... for _, g in pairs(imageParams) do for _, a in pairs(g) do if fa == a then group = g end -- ...but group of "left" is ["right", "left", "center", "none"] end end for _, a in pairs(group) do image = mw.ustring.gsub(image, "|%s*" .. a .. "%f[%A]%s*=[^|%]]*", "") -- remove "|upright=0.75" etc. image = mw.ustring.gsub(image, "|%s*" .. a .. "%s*([|%]])", "%1") -- replace "|left|" by "|" etc. end image = mw.ustring.gsub(image, "([|%]])", "|" .. filearg .. "%1", 1) -- replace "|" by "|left|" etc. end end image = mw.ustring.gsub(image, "(|%s*%d*x?%d+%s*px%s*.-)|%s*%d*x?%d+%s*px%s*([|%]])", "%1%2") -- double px args return image end -- a basic parser to trim down extracted wikitext -- @param text : Wikitext to be processed -- @param options : A table of options... -- options.paraflags : Which number paragraphs to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true}. If not present, all paragraphs will be kept. -- options.fileflags : table of which files to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true} -- options.fileargs : args for the [[File:]] syntax, such as 'left' -- options.filesOnly : only return the files and not the prose local function parse(text, options) local allParagraphs = true -- keep all paragraphs? if options.paraflags then if type(options.paraflags) ~= "table" then options.paraflags = numberFlags(options.paraflags) end for _, v in pairs(options.paraflags) do if v then allParagraphs = false end -- if any para specifically requested, don't keep all end end if is(options.filesOnly) then allParagraphs = false options.paraflags = {} end local maxfile = 0 -- for efficiency, stop checking images after this many have been found if options.fileflags then if type(options.fileflags) ~= "table" then options.fileflags = numberFlags(options.fileflags) end for k, v in pairs(options.fileflags) do if v and k > maxfile then maxfile = k end -- set maxfile = highest key in fileflags end end local fileArgs = options.fileargs and mw.text.trim(options.fileargs) if fileArgs == '' then fileArgs = nil end local leadStart = nil -- have we found some text yet? local t = "" -- the stripped down output text local fileText = "" -- output text with concatenated [[File:Foo|...]]\n entries local files = 0 -- how many images so far local paras = 0 -- how many paragraphs so far local startLine = true -- at the start of a line (no non-spaces found since last \n)? text = mw.ustring.gsub(text,"^%s*","") -- remove initial white space -- Add named files local f = options.files if f and mw.ustring.match(f, "[^%d%s%-,]") then -- filename rather than number list f = mw.ustring.gsub(f, "^%s*File%s*:%s*", "", 1) f = mw.ustring.gsub(f, "^%s*Image%s*:%s*", "", 1) f = "[[File:" .. f .. "]]" f = modifyImage(f, "thumb") f = modifyImage(f, fileArgs) if checkImage(f) then fileText = fileText .. f .. "\n" end end repeat -- loop around parsing a template, image or paragraph local token = mw.ustring.match(text, "^%b{}%s*") or false -- {{Template}} or {| Table |} if not leadStart and not token then token = mw.ustring.match(text, "^%b<>%s*%b{}%s*") end -- allow <tag>{{template}} before lead has started local line = mw.ustring.match(text, "[^\n]*") if token and line and mw.ustring.len(token) < mw.ustring.len(line) then -- template is followed by text (but it may just be other templates) line = mw.ustring.gsub(line, "%b{}", "") -- remove all templates from this line line = mw.ustring.gsub(line, "%b<>", "") -- remove all HTML tags from this line -- if anything is left, other than an incomplete further template or an image, keep the template: it counts as part of the line if mw.ustring.find(line, "%S") and not matchAny(line, "^%s*", { "{{", "%[%[%s*[Ff]ile:", "%[%[%s*[Ii]mage:" }, "") then token = nil end end if token then -- found a template which is not the prefix to a line of text if is(options.keepTables) and mw.ustring.sub(token, 1, 2) == '{|' then t = t .. token -- keep tables elseif mw.ustring.sub(token, 1, 3) == '{{#' then t = t .. token -- keep parser functions elseif leadStart then -- lead has already started, so keep the template within the text, unless it's a whole line (navbox etc.) if not is(options.filesOnly) and not startLine then t = t .. token end elseif matchAny(token, "^{{%s*", wantedBlockTemplates, "%s*%f[|}]") then t = t .. token -- keep wanted block templates elseif files < maxfile then -- discard template, but if we are still collecting images... local images = argImage(token) or {} if not images then local image = parseImage(token, false) -- look for embedded [[File:...]], |image=, etc. if image then table.insert(images, image) end end for _, image in ipairs(images) do if files < maxfile and checkImage(image) then -- if image is found and qualifies (not a sound file, non-free, etc.) files = files + 1 -- count the file, whether displaying it or not if options.fileflags and options.fileflags[files] then -- if displaying this image image = modifyImage(image, "thumb") image = modifyImage(image, fileArgs) fileText = fileText .. image end end end end else -- the next token in text is not a template token = parseImage(text, true) if token then -- the next token in text looks like an image if files < maxfile and checkImage(token) then -- if more images are wanted and this is a wanted image files = files + 1 if options.fileflags and options.fileflags[files] then local image = token -- copy token for manipulation by adding |right etc. without changing the original image = modifyImage(image, fileArgs) fileText = fileText .. image end end else -- got a paragraph, which ends at a file, image, blank line or end of text local afterEnd = mw.ustring.len(text) + 1 local blankPosition = mw.ustring.find(text, "\n%s*\n") or afterEnd -- position of next paragraph delimiter (or end of text) local endPosition = math.min( -- find position of whichever comes first: [[File:, [[Image: or paragraph delimiter mw.ustring.find(text, "%[%[%s*[Ff]ile%s*:") or afterEnd, mw.ustring.find(text, "%[%[%s*[Ii]mage%s*:") or afterEnd, blankPosition) token = mw.ustring.sub(text, 1, endPosition-1) if blankPosition < afterEnd and blankPosition == endPosition then -- paragraph ends with a blank line token = token .. mw.ustring.match(text, "\n%s*\n", blankPosition) end local isHatnote = not(leadStart) and mw.ustring.sub(token, 1, 1) == ':' if not isHatnote then leadStart = leadStart or mw.ustring.len(t) + 1 -- we got a paragraph, so mark the start of the lead section paras = paras + 1 if allParagraphs or (options.paraflags and options.paraflags[paras]) then t = t .. token end -- add if this paragraph wanted end end -- of "else got a paragraph" end -- of "else not a template" if token then text = mw.ustring.sub(text, mw.ustring.len(token)+1) end -- remove parsed token from remaining text startLine = mw.ustring.find(token, "\n%s*$") -- will the next token be the first non-space on a line? until not text or text == "" or not token or token == "" -- loop until all text parsed text = mw.ustring.gsub(t, "\n+$", "") -- remove trailing line feeds, so "{{Transclude text excerpt|Foo}} more" flows on one line return fileText .. text end local function cleanupText(text, options) text = mw.ustring.gsub(text, "<!%-%-.-%-%->","") -- remove HTML comments text = mw.ustring.gsub(text, "<[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-</[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove noinclude bits if mw.ustring.find(text, "[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]") then -- avoid expensive search if possible text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text between onlyinclude sections text = mw.ustring.gsub(text, "^.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text before first onlyinclude section text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.*", "") -- remove text after last onlyinclude section end if not is(options.keepSubsections) then text = mw.ustring.gsub(text, "\n==.*","") -- remove first ==Heading== and everything after it text = mw.ustring.gsub(text, "^==.*","") -- ...even if the lead is empty end if not is(options.keepRefs) then text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]-/%s*>", "") -- remove refs cited elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff].->.-<%s*/%s*[Rr][Ee][Ff]%s*>", "") -- remove refs text = mw.ustring.gsub(text, "%b{}", stripTemplate) -- remove unwanted templates such as references end text = mw.ustring.gsub(text, "<%s*[Ss][Cc][Oo][Rr][Ee].->.-<%s*/%s*[Ss][Cc][Oo][Rr][Ee]%s*>", "") -- remove musical scores text = mw.ustring.gsub(text, "<%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp].->.-<%s*/%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp]%s*>", convertImageMap) -- convert imagemaps into standard images text = mw.ustring.gsub(text, "%s*{{%s*[Tt][Oo][Cc].-}}", "") -- remove most common tables of contents text = mw.ustring.gsub(text, "%s*__[A-Z]*TOC__", "") -- remove TOC behavior switches text = mw.ustring.gsub(text, "\n%s*{{%s*[Pp]p%-.-}}", "\n") -- remove protection templates text = mw.ustring.gsub(text, "%s*{{[^{|}]*[Ss]idebar%s*}}", "") -- remove most sidebars text = mw.ustring.gsub(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}", "") -- remove most stub templates text = mw.ustring.gsub(text, "%s*%[%[%s*:?[Cc]ategory:.-%]%]", "") -- remove categories text = mw.ustring.gsub(text, "^:[^\n]+\n","") -- remove DIY hatnote indented with a colon return text end -- Parse a ==Section== from a page local function getSection(text, section, mainOnly) local escapedSection = mw.ustring.gsub(mw.uri.decode(section), "([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1") -- %26 → & etc, then ^ → %^ etc. local level, content = mw.ustring.match(text .. "\n", "\n(==+)%s*" .. escapedSection .. "%s*==.-\n(.*)") if not content then return luaError("sectionNotFound", section) end local nextSection if mainOnly then nextSection = "\n==.*" -- Main part of section terminates at any level of header else nextSection = "\n==" .. mw.ustring.rep("=?", #level - 2) .. "[^=].*" -- "===" → "\n===?[^=].*", matching "==" or "===" but not "====" end content = mw.ustring.gsub(content, nextSection, "") -- remove later sections with headings at this level or higher if mw.ustring.match(content, "^%s*$") then return luaError("sectionEmpty", section) end return content end -- Parse a <section begin="Name of the fragment"> -- @todo Implement custom parsing of fragments rather than relying on #lst local function getFragment(page, fragment) local frame = mw.getCurrentFrame() local text = frame:callParserFunction('#lst', page, fragment) if mw.ustring.match(text, "^%s*$") then return luaError("fragmentEmpty", fragment) end return text end -- Remove unmatched <tag> or </tag> tags local function fixTags(text, tag) local startCount = 0 for i in mw.ustring.gmatch(text, "<%s*" .. tag .. "%f[^%w_].->") do startCount = startCount + 1 end local endCount = 0 for i in mw.ustring.gmatch(text, "<%s*/" .. tag .. "%f[^%w_].->") do endCount = endCount + 1 end if startCount > endCount then -- more <tag> than </tag>: remove the last few <tag>s local i = 0 text = mw.ustring.gsub(text, "<%s*" .. tag .. "%f[^%w_].->", function(t) i = i + 1 if i > endCount then return "" else return nil end end) -- "end" here terminates the anonymous replacement function(t) passed to gsub elseif endCount > startCount then -- more </tag> than <tag>: remove the first few </tag>s text = mw.ustring.gsub(text, "<%s*/" .. tag .. "%f[^%w_].->", "", endCount - startCount) end return text end local function fixTemplates(text) repeat -- hide matched {{template}}s including nested templates local t = text text = mw.ustring.gsub(text, "{(%b{})}", "\27{\27%1\27}\27") -- {{sometemplate}} → E{Esometemplate}E}E where E represents escape text = mw.ustring.gsub(text, "(< *math[^>]*>[^<]-)}}(.-< */math *>)", "%1}\27}\27%2") -- <math>\{sqrt\{hat{x}}</math> → <math>\{sqrt\{hat{x}E}E</math> until text == t text = text.gsub(text, "([{}])%1[^\27].*", "") -- remove unmatched {{, }} and everything thereafter, avoiding }E}E etc. text = text.gsub(text, "([{}])%1$", "") -- remove unmatched {{, }} at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: E{E{ → {{, etc. return text end local function fixLinks(text) repeat -- hide matched [[wikilink]]s including nested links like [[File:Example.jpg|Some [[nested]] link.]] local t = text text = mw.ustring.gsub(text, "%[(%b[])%]", "\27[\27%1\27]\27") until text == t text = text.gsub(text, "([%[%]])%1[^\27].*", "") -- remove unmatched [[ or ]] and everything thereafter, avoiding ]E]E etc. text = text.gsub(text, "([%[%]])%1$", "") -- remove unmatched [[ or ]] at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: ]E]E → ]], etc. return text end -- Replace the first call to each reference defined outside of the text for the full reference, to prevent undefined references -- Then prefix the page title to the reference names to prevent conflicts -- that is, replace <ref name="Foo"> for <ref name="Title of the article Foo"> -- and also <ref name="Foo" /> for <ref name="Title of the article Foo" /> -- also remove reference groups: <ref name="Foo" group="Bar"> for <ref name="Title of the article Foo"> -- and <ref group="Bar"> for <ref> -- @todo The current regex may fail in cases with both kinds of quotes, like <ref name="Darwin's book"> local function fixRefs(text, page, full) if not full then full = getContent(page) end local refNames = {} local refName local refBody local position = 1 while position < mw.ustring.len(text) do refName, position = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>]+)[\"']?[^>]*/%s*>()", position) if refName then refName = mw.text.trim(refName) if not refNames[refName] then -- make sure we process each ref name only once table.insert(refNames, refName) refName = mw.ustring.gsub(refName, "[%^%$%(%)%.%[%]%*%+%-%?%%]", "%%%0") -- escape special characters refBody = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if not refBody then -- the ref body is not in the excerpt refBody = mw.ustring.match(full, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^/>]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if refBody then -- the ref body was found elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>]*/?%s*>", refBody, 1) end end end else position = mw.ustring.len(text) end end text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>/]+)[\"']?[^>/]*(/?)%s*>", '<ref name="' .. page .. ' %1" %2>') text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*group%s*=%s*[\"']?[^\"'>/]+[\"']%s*>", '<ref>') return text end -- Replace the bold title or synonym near the start of the article by a wikilink to the article function linkBold(text, page) local lang = mw.language.getContentLanguage() local position = mw.ustring.find(text, "'''" .. lang:ucfirst(page) .. "'''", 1, true) -- look for "'''Foo''' is..." (uc) or "A '''foo''' is..." (lc) or mw.ustring.find(text, "'''" .. lang:lcfirst(page) .. "'''", 1, true) -- plain search: special characters in page represent themselves if position then local length = mw.ustring.len(page) text = mw.ustring.sub(text, 1, position + 2) .. "[[" .. mw.ustring.sub(text, position + 3, position + length + 2) .. "]]" .. mw.ustring.sub(text, position + length + 3, -1) -- link it else -- look for anything unlinked in bold, assumed to be a synonym of the title (e.g. a person's birth name) text = mw.ustring.gsub(text, "()'''(.-'*)'''", function(a, b) if not mw.ustring.find(b, "%[") then -- if not wikilinked return "'''[[" .. page .. "|" .. b .. "]]'''" -- replace '''Foo''' by '''[[page|Foo]]''' else return nil -- instruct gsub to make no change end end, 1) -- "end" here terminates the anonymous replacement function(a, b) passed to gsub end return text end -- Main function for modules local function get(page, options) if options.errors then errors = options.errors end if not page or page == "" then return luaError("noPage") end local text page, section = mw.ustring.match(page, "([^#]+)#?([^#]*)") text, page = getContent(page) if not page then return luaError("noPage") end if not text then return luaError("pageNotFound", page) end local full = text -- save the full text for later if is(options.fragment) then text = getFragment(page, options.fragment) end if is(section) then text = getSection(text, section) end -- Strip text of all undersirables text = cleanupText(text, options) text = parse(text, options) -- Replace the bold title or synonym near the start of the article by a wikilink to the article text = linkBold(text, page) -- Remove '''bold text''' if requested if is(options.nobold) then text = mw.ustring.gsub(text, "'''", "") end -- Keep only tables if requested if is(options.tablesOnly) then text = getTables(text) end -- Keep only lists if requested if is(options.listsOnly) then text = getLists(text) end -- Seek and destroy unterminated templates, links and tags text = fixTemplates(text) text = fixLinks(text) text = fixTags(text, "div") -- Fix broken references if is(options.keepRefs) then text = fixRefs(text, page, full) end -- Add (Full article...) link if options.moreLinkText then text = text .. " ('''[[" .. page .. "|" .. options.moreLinkText .. "]]''')" end return text end -- Main invocation function for templates local function main(frame) local args = parseArgs(frame) local page = args[1] local ok, text = pcall(get, page, args) if not ok then text = errorMessages.prefix .. text if errorCategory and errorCategory ~= '' and mw.title.getCurrentTitle().isContentPage then text = text .. '[[' .. errorCategory .. ']]' end return mw.html.create('div'):addClass('error'):wikitext(text) end return frame:preprocess(text) end local function getMoreLinkText(more) local defaultText = "Full article..." -- default text, same as in [[Template:TFAFULL]] if not more or more == '' then -- nil/empty => use default return defaultText end if not yesno(more, true) then -- falsy values => suppress the link return nil end return more end -- Shared invocation function used by templates meant for portals local function portal(frame, template) local args = parseArgs(frame) errors = args['errors'] or false -- disable error reporting unless requested -- There should be at least one argument except with selected=Foo and Foo=Somepage if #args < 1 and not (template == "selected" and args[template] and args[args[template]]) then return wikiError("noPage") end -- Figure out the page to excerpt local page local candidates = {} if template == "lead" then page = args[1] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "selected" then local key = args[template] local count = #args if tonumber(key) then -- normalise article number into the range 1..#args key = key % count if key == 0 then key = count end end page = args[key] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "linked" or template == "listitem" then local source = args[1] local text, source = getContent(source) if not source then return wikiError("noPage") elseif not text then return wikiError("noPage") end local section = args.section if section then -- check relevant section only text = getSection(text, section) if not text then return wikiError("sectionNotFound", section) end end -- Replace annotated links with real links text = mw.ustring.gsub(text, "{{%s*[Aa]nnotated[ _]link%s*|%s*(.-)%s*}}", "[[%1]]") if template == "linked" then for candidate in mw.ustring.gmatch(text, "%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end else -- listitem: first wikilink on a line beginning *, :#, etc. except in "See also" or later section text = mw.ustring.gsub(text, "\n== *See also.*", "") for candidate in mw.ustring.gmatch(text, "\n:*[%*#][^\n]-%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end end elseif template == "random" then for key, value in pairs(args) do if value and type(key) == "number" then table.insert(candidates, mw.text.trim(value)) end end end -- Build an options array for the Excerpt module out of the arguments and the desired defaults local options = { errors = args['errors'] or false, fileargs = args['fileargs'], fileflags = numberFlags( args['files'] ), paraflags = numberFlags( args['paragraphs'] ), moreLinkText = getMoreLinkText(args['more'] ), keepSubsections = args['keepSubsections'], keepRefs = args['keepRefs'], nobold = args['nobold'] } -- Select a random candidate and make sure its valid local text local candidateCount = #candidates if candidateCount > 0 then local candidateKey = 1 local candidateString local candidateArgs if candidateCount > 1 then math.randomseed(os.time()) end while (not text or text == "") and candidateCount > 0 do if candidateCount > 1 then candidateKey = math.random(candidateCount) end -- pick a random candidate candidateString = candidates[candidateKey] if candidateString and candidateString ~= "" then -- We have page or [[page]] or [[page|text]], possibly followed by |opt1|opt2... page, candidateArgs = mw.ustring.match(candidateString, "^%s*(%[%b[]%])%s*|?(.*)") if page and page ~= "" then page = mw.ustring.match(page, "%[%[([^|%]]*)") -- turn [[page|text]] into page, discarding text else -- we have page or page|opt... page, candidateArgs = mw.ustring.match(candidateString, "%s*([^|]*[^|%s])%s*|?(.*)") end -- candidate arguments (even if value is "") have priority over global arguments if candidateArgs and candidateArgs ~= "" then for _, t in pairs(mw.text.split(candidateArgs, "|")) do local k, v = mw.ustring.match(t, "%s*([^=]-)%s*=(.-)%s*$") if k == 'files' then options.fileflags = numberFlags(v) elseif k == 'paragraphs' then options.paraflags = numberFlags(v) elseif k == 'more' then args.more = v else options[k] = v end end end if page and page ~= "" then local section = mw.ustring.match(page, "[^#]+#([^#]+)") -- save the section text, page = getContent(page) -- make sure the page exists if page and page ~= "" and text and text ~= "" then if args.nostubs then local isStub = mw.ustring.find(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}") if isStub then text = nil end end if section and section ~= "" then page = page .. '#' .. section -- restore the section end text = get(page, options) end end end table.remove(candidates, candidateKey) -- candidate processed candidateCount = candidateCount - 1 -- ensure that we exit the loop after all candidates are done end end if not text or text == "" then return wikiError("No valid pages found") end if args.showall then local separator = args.showall if separator == "" then separator = "{{clear}}{{hr}}" end for _, candidate in pairs(candidates) do local t = get(candidate, options) if t ~= "" then text = text .. separator .. t end end end -- Add a collapsed list of pages which might appear if args.list and not args.showall then local list = args.list if list == "" then list = "Other articles" end text = text .. "{{collapse top|title={{resize|85%|" ..list .. "}}|bg=fff}}{{hlist" for _, candidate in pairs(candidates) do if mw.ustring.match(candidate, "%S") then text = text .. "|[[" .. mw.text.trim(candidate) .. "]]" end end text = text .. "}}\n{{collapse bottom}}" end return frame:preprocess(text) end -- Old invocation function used by {{Excerpt}} local function excerpt(frame) local args = parseArgs(frame) -- Make sure the requested page exists local page = args[1] or args.article or args.source or args.page if not page then return wikiError("noPage") end local title = mw.title.new(page) if not title then return wikiError("noPage") end if title.isRedirect then title = title.redirectTarget end if not title.exists then return wikiError("pageNotFound", page) end page = title.prefixedText -- Define some useful variables local section = args[2] or args.section or mw.ustring.match(args[1], "[^#]+#([^#]+)") local tag = args.tag or 'div' -- Define the HTML elements local block = mw.html.create(tag):addClass('excerpt-block') if is(args.indicator) then block:addClass('excerpt-indicator') end local style = frame:extensionTag{ name = 'templatestyles', args = { src = 'Excerpt/styles.css' } } local hatnote if not args.nohat then if args.this then hatnote = args.this elseif args.indicator then hatnote = 'This is' elseif args.only == 'file' then hatnote = 'This file is' elseif args.only == 'file' then hatnote = 'These files are' elseif args.only == 'list' then hatnote = 'This list is' elseif args.only == 'lists' then hatnote = 'These lists are' elseif args.only == 'table' then hatnote = 'This table is' elseif args.only == 'tables' then hatnote = 'These tables are' else hatnote = 'This section is' end hatnote = hatnote .. ' an excerpt from ' if section then hatnote = hatnote .. '[[' .. page .. '#' .. section .. '|' .. page .. ' § ' .. section .. ']]' else hatnote = hatnote .. '[[' .. page .. ']]' end hatnote = hatnote .. "''" .. '<span class="mw-editsection-like plainlinks"><span class="mw-editsection-bracket">[</span>[' hatnote = hatnote .. title:fullUrl('action=edit') .. ' edit' hatnote = hatnote .. ']<span class="mw-editsection-bracket">]</span></span>' .. "''" hatnote = require('Module:Hatnote')._hatnote(hatnote, {selfref=true}) or wikiError('Error generating hatnote') end -- Build the module options out of the template arguments and the desired defaults local options = { fileflags = numberFlags( args['files'] or 1 ), paraflags = numberFlags( args['paragraphs'] ), filesOnly = is( args['only'] == 'file' or args['only'] == 'files' ), listsOnly = is( args['only'] == 'list' or args['only'] == 'lists'), tablesOnly = is( args['only'] == 'table' or args['only'] == 'tables' ), keepTables = is( args['tables'] or true ), keepRefs = is( args['references'] or true ), keepSubsections = is( args['subsections'] ), nobold = not is( args['bold'] ), fragment = args['fragment'] } -- Get the excerpt itself if section then page = page .. '#' .. section end local ok, excerpt = pcall(e.get, page, options) if not ok then return wikiError(excerpt) end excerpt = "\n" .. excerpt -- line break is necessary to prevent broken tables and lists if mw.title.getCurrentTitle().isContentPage then excerpt = excerpt .. '[[Category:Articles with excerpts]]' end excerpt = frame:preprocess(excerpt) excerpt = mw.html.create(tag):addClass('excerpt'):wikitext(excerpt) -- Combine and return the elements return block:node(style):node(hatnote):node(excerpt) end -- Entry points for templates function p.main(frame) return main(frame) end function p.wikiError(message, value) return wikiError(message, value) end function p.lead(frame) return portal(frame, "lead") end -- {{Transclude lead excerpt}} reads a randomly selected article linked from the given page function p.linked(frame) return portal(frame, "linked") end -- {{Transclude linked excerpt}} reads a randomly selected article linked from the given page function p.listitem(frame) return portal(frame, "listitem") end -- {{Transclude list item excerpt}} reads a randomly selected article listed on the given page function p.random(frame) return portal(frame, "random") end -- {{Transclude random excerpt}} reads any article (default for invoke with one argument) function p.selected(frame) return portal(frame, "selected") end -- {{Transclude selected excerpt}} reads the article whose key is in the selected= parameter function p.excerpt(frame) return excerpt(frame) end -- {{Excerpt}} transcludes part of an article into another article -- Entry points for other Lua modules function p.get(page, options) return get(page, options) end function p.getContent(page) return getContent(page) end function p.getSection(text, section) return getSection(text, section) end function p.getTables(text, options) return getTables(text, options) end function p.getLists(text, options) return getLists(text, options) end function p.parse(text, options) return parse(text, options) end function p.parseImage(text, start) return parseImage(text, start) end function p.parseArgs(frame) return parseArgs(frame) end function p.argImage(text) return argImage(text) end function p.checkImage(image) return checkImage(image) end function p.cleanupText(text, options) return cleanupText(text, options) end function p.luaError(message, value) return luaError(message, value) end function p.is(value) return is(value) end function p.numberFlags(str) return numberFlags(str) end function p.getMoreLinkText(more) return getMoreLinkText(more) end -- Entry points for backwards compatibility function p.getsection(text, section) return getSection(text, section) end function p.parseimage(text, start) return parseImage(text, start) end function p.checkimage(image) return checkImage(image) end function p.argimage(text) return argImage(text) end function p.numberflags(str) return numberFlags(str) end return p f8222047daeb45f21fbb916864349f921e3fc2bc 2572 2563 2022-09-12T23:26:51Z Scribunto Module:Yesno 828 1769 2565 2564 2022-09-12T23:17:25Z S30Z 2 1 revision imported from [[:wikipedia:Module:Yesno]] Scribunto text/plain -- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki uses non-ascii characters for any of "yes", "no", etc., you -- should replace "val:lower()" with "mw.ustring.lower(val)" in the -- following line. val = type(val) == 'string' and val:lower() or val if val == nil then return nil elseif val == true or val == 'yes' or val == 'y' or val == 'true' or val == 't' or val == 'on' or tonumber(val) == 1 then return true elseif val == false or val == 'no' or val == 'n' or val == 'false' or val == 'f' or val == 'off' or tonumber(val) == 0 then return false else return default end end f767643e7d12126d020d88d662a3dd057817b9dc Module:Hatnote 828 1770 2567 2566 2022-09-12T23:17:39Z S30Z 2 1 revision imported from [[:wikipedia:Module:Hatnote]] Scribunto text/plain -------------------------------------------------------------------------------- -- Module:Hatnote -- -- -- -- This module produces hatnote links and links to related articles. It -- -- implements the {{hatnote}} and {{format link}} meta-templates and includes -- -- helper functions for other Lua hatnote modules. -- -------------------------------------------------------------------------------- local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local checkTypeForNamedArg = libraryUtil.checkTypeForNamedArg local mArguments -- lazily initialise [[Module:Arguments]] local yesno -- lazily initialise [[Module:Yesno]] local formatLink -- lazily initialise [[Module:Format link]] ._formatLink local p = {} -------------------------------------------------------------------------------- -- Helper functions -------------------------------------------------------------------------------- local function getArgs(frame) -- Fetches the arguments from the parent frame. Whitespace is trimmed and -- blanks are removed. mArguments = require('Module:Arguments') return mArguments.getArgs(frame, {parentOnly = true}) end local function removeInitialColon(s) -- Removes the initial colon from a string, if present. return s:match('^:?(.*)') end function p.defaultClasses(inline) -- Provides the default hatnote classes as a space-separated string; useful -- for hatnote-manipulation modules like [[Module:Hatnote group]]. return (inline == 1 and 'hatnote-inline' or 'hatnote') .. ' ' .. 'navigation-not-searchable' end function p.disambiguate(page, disambiguator) -- Formats a page title with a disambiguation parenthetical, -- i.e. "Example" → "Example (disambiguation)". checkType('disambiguate', 1, page, 'string') checkType('disambiguate', 2, disambiguator, 'string', true) disambiguator = disambiguator or 'disambiguation' return mw.ustring.format('%s (%s)', page, disambiguator) end function p.findNamespaceId(link, removeColon) -- Finds the namespace id (namespace number) of a link or a pagename. This -- function will not work if the link is enclosed in double brackets. Colons -- are trimmed from the start of the link by default. To skip colon -- trimming, set the removeColon parameter to false. checkType('findNamespaceId', 1, link, 'string') checkType('findNamespaceId', 2, removeColon, 'boolean', true) if removeColon ~= false then link = removeInitialColon(link) end local namespace = link:match('^(.-):') if namespace then local nsTable = mw.site.namespaces[namespace] if nsTable then return nsTable.id end end return 0 end function p.makeWikitextError(msg, helpLink, addTrackingCategory, title) -- Formats an error message to be returned to wikitext. If -- addTrackingCategory is not false after being returned from -- [[Module:Yesno]], and if we are not on a talk page, a tracking category -- is added. checkType('makeWikitextError', 1, msg, 'string') checkType('makeWikitextError', 2, helpLink, 'string', true) yesno = require('Module:Yesno') title = title or mw.title.getCurrentTitle() -- Make the help link text. local helpText if helpLink then helpText = ' ([[' .. helpLink .. '|help]])' else helpText = '' end -- Make the category text. local category if not title.isTalkPage -- Don't categorise talk pages and title.namespace ~= 2 -- Don't categorise userspace and yesno(addTrackingCategory) ~= false -- Allow opting out then category = 'Hatnote templates with errors' category = mw.ustring.format( '[[%s:%s]]', mw.site.namespaces[14].name, category ) else category = '' end return mw.ustring.format( '<strong class="error">Error: %s%s.</strong>%s', msg, helpText, category ) end local curNs = mw.title.getCurrentTitle().namespace p.missingTargetCat = --Default missing target category, exported for use in related modules ((curNs == 0) or (curNs == 14)) and 'Articles with hatnote templates targeting a nonexistent page' or nil function p.quote(title) --Wraps titles in quotation marks. If the title starts/ends with a quotation --mark, kerns that side as with {{-'}} local quotationMarks = { ["'"]=true, ['"']=true, ['“']=true, ["‘"]=true, ['”']=true, ["’"]=true } local quoteLeft, quoteRight = -- Test if start/end are quotation marks quotationMarks[string.sub(title, 1, 1)], quotationMarks[string.sub(title, -1, -1)] if quoteLeft or quoteRight then title = mw.html.create("span"):wikitext(title) end if quoteLeft then title:css("padding-left", "0.15em") end if quoteRight then title:css("padding-right", "0.15em") end return '"' .. tostring(title) .. '"' end -------------------------------------------------------------------------------- -- Hatnote -- -- Produces standard hatnote text. Implements the {{hatnote}} template. -------------------------------------------------------------------------------- function p.hatnote(frame) local args = getArgs(frame) local s = args[1] if not s then return p.makeWikitextError( 'no text specified', 'Template:Hatnote#Errors', args.category ) end return p._hatnote(s, { extraclasses = args.extraclasses, selfref = args.selfref }) end function p._hatnote(s, options) checkType('_hatnote', 1, s, 'string') checkType('_hatnote', 2, options, 'table', true) options = options or {} local inline = options.inline local hatnote = mw.html.create(inline == 1 and 'span' or 'div') local extraclasses if type(options.extraclasses) == 'string' then extraclasses = options.extraclasses end hatnote :attr('role', 'note') :addClass(p.defaultClasses(inline)) :addClass(extraclasses) :addClass(options.selfref and 'selfref' or nil) :wikitext(s) return mw.getCurrentFrame():extensionTag{ name = 'templatestyles', args = { src = 'Module:Hatnote/styles.css' } } .. tostring(hatnote) end return p 3ae1ed7094c5005ca0896395ec9a587287a0bef1 Template:Excerpt/styles.css 10 1771 2569 2568 2022-09-12T23:17:58Z S30Z 2 1 revision imported from [[:wikipedia:Template:Excerpt/styles.css]] text text/plain /* {{pp-template}} */ .excerpt-hat .mw-editsection-like { font-style: normal; } f1ab1e416ec88950818972ed770862228ae64106 Module:Arguments 828 1772 2571 2570 2022-09-12T23:18:18Z S30Z 2 1 revision imported from [[:wikipedia:Module:Arguments]] Scribunto text/plain -- This module provides easy processing of arguments passed to Scribunto from -- #invoke. It is intended for use by other Lua modules, and should not be -- called from #invoke directly. local libraryUtil = require('libraryUtil') local checkType = libraryUtil.checkType local arguments = {} -- Generate four different tidyVal functions, so that we don't have to check the -- options every time we call it. local function tidyValDefault(key, val) if type(val) == 'string' then val = val:match('^%s*(.-)%s*$') if val == '' then return nil else return val end else return val end end local function tidyValTrimOnly(key, val) if type(val) == 'string' then return val:match('^%s*(.-)%s*$') else return val end end local function tidyValRemoveBlanksOnly(key, val) if type(val) == 'string' then if val:find('%S') then return val else return nil end else return val end end local function tidyValNoChange(key, val) return val end local function matchesTitle(given, title) local tp = type( given ) return (tp == 'string' or tp == 'number') and mw.title.new( given ).prefixedText == title end local translate_mt = { __index = function(t, k) return k end } function arguments.getArgs(frame, options) checkType('getArgs', 1, frame, 'table', true) checkType('getArgs', 2, options, 'table', true) frame = frame or {} options = options or {} --[[ -- Set up argument translation. --]] options.translate = options.translate or {} if getmetatable(options.translate) == nil then setmetatable(options.translate, translate_mt) end if options.backtranslate == nil then options.backtranslate = {} for k,v in pairs(options.translate) do options.backtranslate[v] = k end end if options.backtranslate and getmetatable(options.backtranslate) == nil then setmetatable(options.backtranslate, { __index = function(t, k) if options.translate[k] ~= k then return nil else return k end end }) end --[[ -- Get the argument tables. If we were passed a valid frame object, get the -- frame arguments (fargs) and the parent frame arguments (pargs), depending -- on the options set and on the parent frame's availability. If we weren't -- passed a valid frame object, we are being called from another Lua module -- or from the debug console, so assume that we were passed a table of args -- directly, and assign it to a new variable (luaArgs). --]] local fargs, pargs, luaArgs if type(frame.args) == 'table' and type(frame.getParent) == 'function' then if options.wrappers then --[[ -- The wrappers option makes Module:Arguments look up arguments in -- either the frame argument table or the parent argument table, but -- not both. This means that users can use either the #invoke syntax -- or a wrapper template without the loss of performance associated -- with looking arguments up in both the frame and the parent frame. -- Module:Arguments will look up arguments in the parent frame -- if it finds the parent frame's title in options.wrapper; -- otherwise it will look up arguments in the frame object passed -- to getArgs. --]] local parent = frame:getParent() if not parent then fargs = frame.args else local title = parent:getTitle():gsub('/sandbox$', '') local found = false if matchesTitle(options.wrappers, title) then found = true elseif type(options.wrappers) == 'table' then for _,v in pairs(options.wrappers) do if matchesTitle(v, title) then found = true break end end end -- We test for false specifically here so that nil (the default) acts like true. if found or options.frameOnly == false then pargs = parent.args end if not found or options.parentOnly == false then fargs = frame.args end end else -- options.wrapper isn't set, so check the other options. if not options.parentOnly then fargs = frame.args end if not options.frameOnly then local parent = frame:getParent() pargs = parent and parent.args or nil end end if options.parentFirst then fargs, pargs = pargs, fargs end else luaArgs = frame end -- Set the order of precedence of the argument tables. If the variables are -- nil, nothing will be added to the table, which is how we avoid clashes -- between the frame/parent args and the Lua args. local argTables = {fargs} argTables[#argTables + 1] = pargs argTables[#argTables + 1] = luaArgs --[[ -- Generate the tidyVal function. If it has been specified by the user, we -- use that; if not, we choose one of four functions depending on the -- options chosen. This is so that we don't have to call the options table -- every time the function is called. --]] local tidyVal = options.valueFunc if tidyVal then if type(tidyVal) ~= 'function' then error( "bad value assigned to option 'valueFunc'" .. '(function expected, got ' .. type(tidyVal) .. ')', 2 ) end elseif options.trim ~= false then if options.removeBlanks ~= false then tidyVal = tidyValDefault else tidyVal = tidyValTrimOnly end else if options.removeBlanks ~= false then tidyVal = tidyValRemoveBlanksOnly else tidyVal = tidyValNoChange end end --[[ -- Set up the args, metaArgs and nilArgs tables. args will be the one -- accessed from functions, and metaArgs will hold the actual arguments. Nil -- arguments are memoized in nilArgs, and the metatable connects all of them -- together. --]] local args, metaArgs, nilArgs, metatable = {}, {}, {}, {} setmetatable(args, metatable) local function mergeArgs(tables) --[[ -- Accepts multiple tables as input and merges their keys and values -- into one table. If a value is already present it is not overwritten; -- tables listed earlier have precedence. We are also memoizing nil -- values, which can be overwritten if they are 's' (soft). --]] for _, t in ipairs(tables) do for key, val in pairs(t) do if metaArgs[key] == nil and nilArgs[key] ~= 'h' then local tidiedVal = tidyVal(key, val) if tidiedVal == nil then nilArgs[key] = 's' else metaArgs[key] = tidiedVal end end end end end --[[ -- Define metatable behaviour. Arguments are memoized in the metaArgs table, -- and are only fetched from the argument tables once. Fetching arguments -- from the argument tables is the most resource-intensive step in this -- module, so we try and avoid it where possible. For this reason, nil -- arguments are also memoized, in the nilArgs table. Also, we keep a record -- in the metatable of when pairs and ipairs have been called, so we do not -- run pairs and ipairs on the argument tables more than once. We also do -- not run ipairs on fargs and pargs if pairs has already been run, as all -- the arguments will already have been copied over. --]] metatable.__index = function (t, key) --[[ -- Fetches an argument when the args table is indexed. First we check -- to see if the value is memoized, and if not we try and fetch it from -- the argument tables. When we check memoization, we need to check -- metaArgs before nilArgs, as both can be non-nil at the same time. -- If the argument is not present in metaArgs, we also check whether -- pairs has been run yet. If pairs has already been run, we return nil. -- This is because all the arguments will have already been copied into -- metaArgs by the mergeArgs function, meaning that any other arguments -- must be nil. --]] if type(key) == 'string' then key = options.translate[key] end local val = metaArgs[key] if val ~= nil then return val elseif metatable.donePairs or nilArgs[key] then return nil end for _, argTable in ipairs(argTables) do local argTableVal = tidyVal(key, argTable[key]) if argTableVal ~= nil then metaArgs[key] = argTableVal return argTableVal end end nilArgs[key] = 'h' return nil end metatable.__newindex = function (t, key, val) -- This function is called when a module tries to add a new value to the -- args table, or tries to change an existing value. if type(key) == 'string' then key = options.translate[key] end if options.readOnly then error( 'could not write to argument table key "' .. tostring(key) .. '"; the table is read-only', 2 ) elseif options.noOverwrite and args[key] ~= nil then error( 'could not write to argument table key "' .. tostring(key) .. '"; overwriting existing arguments is not permitted', 2 ) elseif val == nil then --[[ -- If the argument is to be overwritten with nil, we need to erase -- the value in metaArgs, so that __index, __pairs and __ipairs do -- not use a previous existing value, if present; and we also need -- to memoize the nil in nilArgs, so that the value isn't looked -- up in the argument tables if it is accessed again. --]] metaArgs[key] = nil nilArgs[key] = 'h' else metaArgs[key] = val end end local function translatenext(invariant) local k, v = next(invariant.t, invariant.k) invariant.k = k if k == nil then return nil elseif type(k) ~= 'string' or not options.backtranslate then return k, v else local backtranslate = options.backtranslate[k] if backtranslate == nil then -- Skip this one. This is a tail call, so this won't cause stack overflow return translatenext(invariant) else return backtranslate, v end end end metatable.__pairs = function () -- Called when pairs is run on the args table. if not metatable.donePairs then mergeArgs(argTables) metatable.donePairs = true end return translatenext, { t = metaArgs } end local function inext(t, i) -- This uses our __index metamethod local v = t[i + 1] if v ~= nil then return i + 1, v end end metatable.__ipairs = function (t) -- Called when ipairs is run on the args table. return inext, t, 0 end return args end return arguments 3134ecce8429b810d445e29eae115e2ae4c36c53 Module:Excerpt/portals 828 1768 2573 2572 2022-09-12T23:34:01Z Scribunto 2574 2573 2022-09-12T23:37:34Z Scribunto 2575 2574 2022-09-12T23:43:20Z Scribunto 2576 2575 2022-09-12T23:44:18Z Scribunto 2577 2576 2022-09-12T23:46:41Z Scribunto 2578 2577 2022-09-12T23:47:58Z Scribunto 2579 2578 2022-09-12T23:49:22Z Scribunto 2580 2579 2022-09-12T23:49:47Z Scribunto 2581 2580 2022-09-12T23:54:14Z Scribunto 2582 2581 2022-09-12T23:54:38Z Scribunto 2583 2582 2022-09-12T23:56:35Z Scribunto 2584 2583 2022-09-12T23:58:53Z Scribunto 2585 2584 2022-09-13T00:02:10Z Scribunto 2586 2585 2022-09-13T00:02:49Z Scribunto 2587 2586 2022-09-13T00:03:54Z Scribunto 2588 2587 2022-09-13T00:10:30Z Scribunto 2589 2588 2022-09-13T00:11:08Z Scribunto 2590 2589 2022-09-13T00:12:24Z Scribunto 2591 2590 2022-09-13T00:12:53Z Scribunto 2592 2591 2022-09-13T00:14:12Z Scribunto 2593 2592 2022-09-13T00:14:40Z Scribunto 2594 2593 2022-09-13T00:15:41Z Scribunto 2595 2594 2022-09-13T00:16:35Z Scribunto 2596 2595 2022-09-13T00:16:56Z Scribunto 2597 2596 2022-09-13T00:17:16Z Scribunto 2598 2597 2022-09-13T00:18:22Z Scribunto 2599 2598 2022-09-13T00:19:21Z Scribunto 2600 2599 2022-09-13T00:20:37Z Scribunto 2601 2600 2022-09-13T00:24:50Z Scribunto 2602 2601 2022-09-13T00:28:19Z Scribunto 2603 2602 2022-09-13T00:29:13Z Scribunto 2604 2603 2022-09-13T00:31:21Z Scribunto 2605 2604 2022-09-13T00:32:08Z Scribunto 2606 2605 2022-09-13T00:33:21Z Scribunto 2607 2606 2022-09-13T00:37:09Z Scribunto 2608 2607 2022-09-13T00:37:54Z Scribunto 2609 2608 2022-09-13T00:41:00Z Scribunto 2610 2609 2022-09-13T00:41:45Z Scribunto 2611 2610 2022-09-13T00:43:03Z Scribunto 2612 2611 2022-09-13T00:44:37Z Scribunto 2613 2612 2022-09-13T00:45:23Z Scribunto 2614 2613 2022-09-13T00:46:09Z Scribunto 2615 2614 2022-09-13T00:47:06Z Scribunto 2616 2615 2022-09-13T00:53:22Z Scribunto 2617 2616 2022-09-13T00:54:42Z S30Z 2 Scribunto text/plain -- ATTENTION ! -- Prefer Module:Excerpt whenever possible -- Name of the category to track content pages with errors local errorCategory = "Articles with broken excerpts" -- Error messages local errorMessages = { prefix = "Excerpt error: ", noPage = "No page given", pageNotFound = "Page '%s' not found", leadEmpty = "Lead section is empty", sectionEmpty = "Section '%s' is empty", sectionNotFound = "Section '%s' not found", fragmentEmpty = "Fragment '%s' is empty", fragmentNotFound = "Fragment '%s' not found" } -- Regular expressions to match all aliases of the file namespace local fileNamespaces = { "[Ff]ile", "[Ii]mage" } -- Regular expressions to match all image parameters local imageParams = { {"thumb", "thumbnail", "frame", "framed", "frameless"}, {"right", "left", "center", "none"}, {"baseline", "middle", "sub", "super", "text-top", "text-bottom", "top", "bottom"} } -- Regular expressions to match all infobox parameters for image captions local captionParams = { "[^=|]*[Cc]aption[^=|]*", "[^=|]*[Ll]egend[^=|]*" } -- Regular expressions to match all inline templates that are undesirable in excerpts local unwantedInlineTemplates = { "[Ee]fn", "[Ee]fn%-[lu][arg]", "[Ee]fn [%a ]-", "[Ee]l[mn]", "[Rr]p?", "[Ss]fn[bmp]", "[Ss]f[bn]", "[Nn]ote[Tt]ag", "#[Tt]ag:%s*[Rr]ef", "[Rr]efn?", "[CcDd]n", "[Cc]itation[%- _]needed", "[Dd]isambiguation needed", "[Ff]eatured article", "[Gg]ood article", "[Dd]ISPLAYTITLE", "[Ss]hort[ _]+description", "[Cc]itation", "[Cc]ite[%- _]+[%w_%s]-", "[Cc]oor[%w_%s]-", "[Uu]?n?[Rr]eliable source[%?%w_%s]-", "[Rr]s%??", "[Vv]c", "[Vv]erify credibility", "[Bb]y[ _]*[Ww]ho[m]*%??", "[Ww]ikisource[ -_]*multi", "[Ii]nflation[ _/-]*[Ff]n", "[Bb]iblesource", -- aliases for Clarification needed "[Cc]f[ny]", "[Cc]larification[ _]+inline", "[Cc]larification[%- _]*needed", "[Cc]larification", "[Cc]larify%-inline", "[Cc]larify%-?me", "[Cc]larify[ _]+inline", "[Cc]larify", "[Cc]LARIFY", "[Cc]onfusing%-inline", "[Cc]onfusing%-short", "[Ee]xplainme", "[Hh]uh[ _]*%??", "[Ww]hat%?", "[Ii]nline[ _]+[Uu]nclear", "[Ii]n[ _]+what[ _]+sense", "[Oo]bscure", "[Pp]lease[ _]+clarify", "[Uu]nclear[ _]+inline", "[Ww]hat's[ _]+this%?", "[Gg]eoQuelle", "[Nn]eed[s]+[%- _]+[Ii][Pp][Aa]", "[Ii]PA needed", -- aliases for Clarification needed lead "[Cc]itation needed %(?lea?de?%)?", "[Cc]nl", "[Ff]act %(?lea?de?%)?", "[Ll]ead citation needed", "[Nn]ot in body", "[Nn]ot verified in body", -- Primary source etc. "[Pp]s[ci]", "[Nn]psn", "[Nn]on%-primary[ _]+source[ _]+needed", "[Ss]elf%-published[%w_%s]-", "[Uu]ser%-generated[%w_%s]-", "[Pp]rimary source[%w_%s]-", "[Ss]econdary source[%w_%s]-", "[Tt]ertiary source[%w_%s]-", "[Tt]hird%-party[%w_%s]-", -- aliases for Disambiguation (page) and similar "[Bb]egriffsklärung", "[Dd][Aa][Bb]", "[Dd]big", "[%w_%s]-%f[%w][Dd]isam[%w_%s]-", "[Hh][Nn][Dd][Ii][Ss]", -- aliases for Failed verification "[Bb]adref", "[Ff]aile?[ds] ?[rv][%w_%s]-", "[Ff][Vv]", "[Nn][Ii]?[Cc][Gg]", "[Nn]ot ?in ?[crs][%w_%s]-", "[Nn]ot specifically in source", "[Vv]erification[%- _]failed", -- aliases for When "[Aa]s[ _]+of[ _]+when%??", "[Aa]s[ _%-]+of%??", "[Cc]larify date", "[Dd]ate[ _]*needed", "[Nn]eeds?[ _]+date", "[Rr]ecently", "[Ss]ince[ _]+when%??", "[Ww]HEN", "[Ww]hen%??", -- aliases for Update "[Nn]ot[ _]*up[ _]*to[ _]*date","[Oo]u?[Tt][Dd]","[Oo]ut[%- _]*o?f?[%- _]*dated?", "[Uu]pdate", "[Uu]pdate[ _]+sect", "[Uu]pdate[ _]+Watch", -- aliases for Pronunciation needed "[Pp]ronunciation%??[%- _]*n?e?e?d?e?d?", "[Pp]ronounce", "[Rr]equested[%- _]*pronunciation", "[Rr]e?q?pron", "[Nn]eeds[%- _]*pronunciation", -- Chart, including Chart/start etc. "[Cc]hart", "[Cc]hart/[%w_%s]-", -- Cref and others "[Cc]ref2?", "[Cc]note", -- Explain and others "[Ee]xplain", "[Ff]urther[ ]*explanation[ ]*needed", "[Ee]laboration[ ]*needed", "[Ee]xplanation[ ]*needed", -- TOC templates "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Tt][Oo][Cc][8]*[5]*", "[Tt][Oo][Cc]", "09[Aa][Zz]", "[Tt][Oo][Cc][ ]*[Cc][Oo][Mm][Pp][Aa][Cc][Tt]", "[Tt][Oo][Cc][ ]*[Ss][Mm][Aa][Ll][Ll]", "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Aa][Ll][Pp][Hh][Aa][Bb][Ee][Tt][Ii][Cc][ _]*[Tt][Oo][Cc]", "DEFAULTSORT:.-", "[Oo]ne[ _]+source", "[Cc]ontains[ _]+special[ _]+characters", "[Ii]nfobox[ _]+Chinese" } -- Regular expressions to match all block templates that are desirable in excerpts local wantedBlockTemplates = { "[Bb]asketball[ _]roster[ _]header", "[Cc]abinet[ _]table[^|}]*", "[Cc]hart[^|}]*", "[Cc]lear", "[Cc]ol[^|}]*", -- all column templates "COVID-19[ _]pandemic[ _]data[^|}]*", "[Cc]ycling[ _]squad[^|}]*", "[Dd]ynamic[ _]list", "[Ee]lection[ _]box[^|}]*", "[Gg]allery", "[Gg]raph[^|}]*", "[Hh]idden", "[Hh]istorical[ _]populations", "[Ll]egend[ _]inline", "[Pp]lainlist", "[Pp]layer[^|}]*", "[Ss]eries[ _]overview", "[Ss]ide[ _]box", "[Ss]witcher", "[Tt]ree[ _]chart[^|}]*", "[Tt]elevision[ _]ratings[ _]graph" } local yesno = require('Module:Yesno') local p = {} -- Helper function to test for truthy and falsy values local function is(value) if not value or value == "" or value == "0" or value == "false" or value == "no" then return false end return true end -- Error handling function -- Throws a Lua error or returns an empty string if error reporting is disabled errors = true -- show errors by default local function luaError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) error(message, 2) end -- Error handling function -- Returns a wiki friendly error or an empty string if error reporting is disabled local function wikiError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) message = errorMessages.prefix .. message if mw.title.getCurrentTitle().isContentPage then local errorCategory = mw.title.new(errorCategory, 'Category') if errorCategory then message = message .. '[[' .. errorCategory.prefixedText .. ']]' end end message = mw.html.create('div'):addClass('error'):wikitext(message) return message end -- Helper function to match from a list regular expressions -- Like so: match pre..list[1]..post or pre..list[2]..post or ... local function matchAny(text, pre, list, post, init) local match = {} for i = 1, #list do match = { mw.ustring.match(text, pre .. list[i] .. post, init) } if match[1] then return unpack(match) end end return nil end -- Helper function to convert imagemaps into standard images local function convertImageMap(imagemap) local image = matchAny(imagemap, "[>\n]%s*", fileNamespaces, "[^\n]*") if image then return "<!--imagemap-->[[" .. mw.ustring.gsub(image, "[>\n]%s*", "", 1) .. "]]" else return "" -- remove entire block if image can't be extracted end end -- Helper function to convert a comma-separated list of numbers or min-max ranges into a list of booleans -- For example: "1,3-5" to {1=true,2=false,3=true,4=true,5=true} local function numberFlags(str) if not str then return {} end local flags = {} local ranges = mw.text.split(str, ",") -- parse ranges: "1,3-5" to {"1","3-5"} for _, r in pairs(ranges) do local min, max = mw.ustring.match(r, "^%s*(%d+)%s*[-–—]%s*(%d+)%s*$") -- "3-5" to min=3 max=5 if not max then min, max = mw.ustring.match(r, "^%s*((%d+))%s*$") end -- "1" to min=1 max=1 if max then for p = min, max do flags[p] = true end end end return flags end -- Helper function to convert template arguments into an array of arguments fit for get() local function parseArgs(frame) local args = {} for key, value in pairs(frame:getParent().args) do args[key] = value end for key, value in pairs(frame.args) do args[key] = value end -- args from a Lua call have priority over parent args from template args.paraflags = numberFlags(args["paragraphs"] or "") -- parse paragraphs: "1,3-5" to {"1","3-5"} args.fileflags = numberFlags(args["files"] or "") -- parse file numbers return args end -- simulate {{Airreg}} without the footnote, given "N|485US|," or similar local function airreg(p) local s = mw.text.split(p, "%s*|%s*") if s[1] ~= "N" and s[1] ~= "HL" and s[1] ~= "JA" then s[1]=s[1] .. "-" end return table.concat(s, "") end -- Helper function to remove unwanted templates and pseudo-templates such as #tag:ref and DEFAULTSORT local function stripTemplate(t) -- If template is unwanted then return "" (gsub will replace by nothing), else return nil (gsub will keep existing string) if matchAny(t, "^{{%s*", unwantedInlineTemplates, "%s*%f[|}]") then return "" end -- If template is wanted but produces an unwanted reference then return the string with |Note=, |ref or |shortref removed local noRef = mw.ustring.gsub(t, "|%s*Note%s*=.-%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*ref%s*%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*shortref%s*%f[|}]", "") -- If a wanted template has unwanted nested templates, purge them too noRef = mw.ustring.sub(noRef, 1, 2) .. mw.ustring.gsub(mw.ustring.sub(noRef, 3), "%b{}", stripTemplate) -- Replace {{audio}} by its text parameter: {{Audio|Foo.ogg|Bar}} → Bar noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]udio.-|.-|(.-)%f[|}].*", "%1") -- Replace {{Nihongo foot}} by its text parameter: {{Nihongo foot|English|英語|eigo}} → English noRef = mw.ustring.gsub(noRef, "^{{%s*[Nn]ihongo[ _]+foot%s*|(.-)%f[|}].*", "%1") -- Replace {{Airreg}} by its text parameter: {{Airreg|N|485US|,}} → N485US, noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]irreg%s*|%s*(.-)}}", airreg) if noRef ~= t then return noRef end return nil -- not an unwanted template: keep end -- Get a page's content, following redirects -- Also returns the page name, or the target page name if a redirect was followed, or false if no page found -- For file pages, returns the content of the file description page local function getContent(page) local title = mw.title.new(page) if not title then return false, false end local target = title.redirectTarget if target then title = target end return title:getContent(), title.prefixedText end -- Get the tables only local function getTables(text, options) local tables = {} for candidate in mw.ustring.gmatch(text, "%b{}") do if mw.ustring.sub(candidate, 1, 2) == '{|' then table.insert(tables, candidate) end end return table.concat(tables, '\n') end -- Get the lists only local function getLists(text, options) local lists = {} for list in mw.ustring.gmatch(text, "\n[*#][^\n]+") do table.insert(lists, list) end return table.concat(lists, '\n') end -- Check image for suitability local function checkImage(image) local page = matchAny(image, "", fileNamespaces, "%s*:[^|%]]*") -- match File:(name) or Image:(name) if not page then return false end return true end -- Attempt to parse [[File:...]] or [[Image:...]], either anywhere (start=false) or at the start only (start=true) local function parseImage(text, start) local startre = "" if start then startre = "^" end -- a true flag restricts search to start of string local image = matchAny(text, startre .. "%[%[%s*", fileNamespaces, "%s*:.*") -- [[File: or [[Image: ... if image then image = mw.ustring.match(image, "%b[]%s*") -- matching [[...]] to handle wikilinks nested in caption end return image end -- Parse a caption, which ends at a | (end of parameter) or } (end of infobox) but may contain nested [..] and {..} local function parseCaption(caption) if not caption then return nil end local length = mw.ustring.len(caption) local position = 1 while position <= length do local linkStart, linkEnd = mw.ustring.find(caption, "%b[]", position) linkStart = linkStart or length + 1 -- avoid comparison with nil when no link local templateStart, templateEnd = mw.ustring.find(caption, "%b{}", position) templateStart = templateStart or length + 1 -- avoid comparison with nil when no template local argEnd = mw.ustring.find(caption, "[|}]", position) or length + 1 if linkStart < templateStart and linkStart < argEnd then position = linkEnd + 1 -- skip wikilink elseif templateStart < argEnd then position = templateEnd + 1 -- skip template else -- argument ends before the next wikilink or template return mw.ustring.sub(caption, 1, argEnd - 1) end end return caption -- No terminator found: return entire caption end -- Attempt to construct a [[File:...]] block from {{infobox ... |image= ...}} local function argImage(text) local token = nil local hasNamedArgs = mw.ustring.find(text, "|") and mw.ustring.find(text, "=") if not hasNamedArgs then return nil end -- filter out any template that obviously doesn't contain an image -- ensure image map is captured text = mw.ustring.gsub(text, '<!%-%-imagemap%-%->', '|imagemap=') -- find all images local hasImages = false local images = {} local captureFrom = 1 while captureFrom < mw.ustring.len(text) do local argname, position, image = mw.ustring.match(text, "|%s*([^=|]-[Ii][Mm][Aa][Gg][Ee][^=|]-)%s*=%s*()(.([^=|]-[Jj][Pp][Gg][^=|]-))", captureFrom) if image then -- ImageCaption=, image_size=, image_upright=, etc. do not introduce an image local insertimage = mw.ustring.match(text, "|%s*([^=|]-[Ii][Mm][Aa][Gg][Ee][^=|]-)%s*=%s*()(.([^=|]-[Jj][Pp][Gg][^=|]-))", captureFrom) local lcArgName = mw.ustring.lower(argname) if mw.ustring.find(lcArgName, "caption") or mw.ustring.find(lcArgName, "size") or mw.ustring.find(lcArgName, "upright") then -- image = nil end end if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|]-[Pp][Hh][Oo][Tt][Oo][^=|]-%s*=%s*()(.*)", captureFrom) if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|{}]-%s*=%s*()%[?%[?([^|{}]*%.%a%a%a%a?)%s*%f[|}]", captureFrom) if image then hasImages = true if not images[position] then images[position] = image end captureFrom = position else captureFrom = mw.ustring.len(text) end end if not hasImages then return nil end -- find all captions local captions = {} captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, caption = matchAny(text, "|%s*", captionParams, "%s*=%s*()([^\n]+)", captureFrom) if caption then -- extend caption to parse "| caption = Foo {{Template\n on\n multiple lines}} Bar\n" local bracedCaption = mw.ustring.match(text, "^[^\n]-%b{}[^\n]+", position) if bracedCaption and bracedCaption ~= "" then caption = bracedCaption end caption = mw.text.trim(caption) local captionStart = mw.ustring.sub(caption, 1, 1) if captionStart == '|' or captionStart == '}' then caption = nil end end if caption then -- find nearest image, and use same index for captions table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not captions[i] then captions[i] = parseCaption(caption) end end end captureFrom = position else captureFrom = mw.ustring.len(text) end end -- find all alt text local altTexts = {} for position, altText in mw.ustring.gmatch(text, "|%s*[Aa][Ll][Tt]%s*=%s*()([^\n]*)") do if altText then -- altText is terminated by }} or |, but first skip any matched [[...]] and {{...}} local lookFrom = math.max( -- find position after whichever comes last: start of string, end of last ]] or end of last }} mw.ustring.match(altText, ".*{%b{}}()") or 1, -- if multiple {{...}}, .* consumes all but one, leaving the last for %b mw.ustring.match(altText, ".*%[%b[]%]()") or 1) local length = mw.ustring.len(altText) local afterText = math.min( -- find position after whichever comes first: end of string, }} or | mw.ustring.match(altText, "()}}", lookFrom) or length+1, mw.ustring.match(altText, "()|", lookFrom) or length+1) altText = mw.ustring.sub(altText, 1, afterText-1) -- chop off |... or }}... which is not part of [[...]] or {{...}} altText = mw.text.trim(altText) local altTextStart = mw.ustring.sub(altText, 1, 1) if altTextStart == '|' or altTextStart == '}' then altText = nil end end if altText then -- find nearest image, and use same index for altTexts table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not altTexts[i] then altTexts[i] = altText end end end end end -- find all image sizes local imageSizes = {} for position, imageSizeMatch in mw.ustring.gmatch(text, "|%s*[Ii][Mm][Aa][Gg][Ee][ _]?[Ss][Ii][Zz][Ee]%s*=%s*()([^}|\n]*)") do local imageSize = mw.ustring.match(imageSizeMatch, "=%s*([^}|\n]*)") if imageSize then imageSize = mw.text.trim(imageSize ) local imageSizeStart = mw.ustring.sub(imageSize, 1, 1) if imageSizeStart == '|' or imageSizeStart == '}' then imageSize = nil end end if imageSize then -- find nearest image, and use same index for imageSizes table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not imageSizes[i] then imageSizes[i] = imageSize end end end end end -- sort the keys of the images table (in a table sequence), so that images can be iterated over in order local keys = {} for key, val in pairs(images) do table.insert(keys, key) end table.sort(keys) -- add in relevant optional parameters for each image: caption, alt text and image size local imageTokens = {} for _, index in ipairs(keys) do local image = images[index] local token = parseImage(image, true) -- look for image=[[File:...]] etc. if not token then image = mw.ustring.match(image, "^[^}|\n]*") -- remove later arguments token = "[[" -- Add File: unless name already begins File: or Image: if not matchAny(image, "^", fileNamespaces, "%s*:") then token = token .. "File:" end token = token .. image local caption = captions[index] if caption and mw.ustring.match(caption, "%S") then token = token .. "|" .. caption end local alt = altTexts[index] if alt then token = token .. "|alt=" .. alt end local image_size = imageSizes[index] if image_size and mw.ustring.match(image_size, "%S") then token = token .. "|" .. image_size end token = token .. "]]" end token = mw.ustring.gsub(token, "\n","") .. "\n" table.insert(imageTokens, token) end return imageTokens end local function modifyImage(image, fileArgs) if fileArgs then for _, filearg in pairs(mw.text.split(fileArgs, "|")) do -- handle fileArgs=left|border etc. local fa = mw.ustring.gsub(filearg, "=.*", "") -- "upright=0.75" → "upright" local group = {fa} -- group of "border" is ["border"]... for _, g in pairs(imageParams) do for _, a in pairs(g) do if fa == a then group = g end -- ...but group of "left" is ["right", "left", "center", "none"] end end for _, a in pairs(group) do image = mw.ustring.gsub(image, "|%s*" .. a .. "%f[%A]%s*=[^|%]]*", "") -- remove "|upright=0.75" etc. image = mw.ustring.gsub(image, "|%s*" .. a .. "%s*([|%]])", "%1") -- replace "|left|" by "|" etc. end image = mw.ustring.gsub(image, "([|%]])", "|" .. filearg .. "%1", 1) -- replace "|" by "|left|" etc. end end image = mw.ustring.gsub(image, "(|%s*%d*x?%d+%s*px%s*.-)|%s*%d*x?%d+%s*px%s*([|%]])", "%1%2") -- double px args return image end -- a basic parser to trim down extracted wikitext -- @param text : Wikitext to be processed -- @param options : A table of options... -- options.paraflags : Which number paragraphs to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true}. If not present, all paragraphs will be kept. -- options.fileflags : table of which files to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true} -- options.fileargs : args for the [[File:]] syntax, such as 'left' -- options.filesOnly : only return the files and not the prose local function parse(text, options) local allParagraphs = true -- keep all paragraphs? if options.paraflags then if type(options.paraflags) ~= "table" then options.paraflags = numberFlags(options.paraflags) end for _, v in pairs(options.paraflags) do if v then allParagraphs = false end -- if any para specifically requested, don't keep all end end if is(options.filesOnly) then allParagraphs = false options.paraflags = {} end local maxfile = 0 -- for efficiency, stop checking images after this many have been found if options.fileflags then if type(options.fileflags) ~= "table" then options.fileflags = numberFlags(options.fileflags) end for k, v in pairs(options.fileflags) do if v and k > maxfile then maxfile = k end -- set maxfile = highest key in fileflags end end local fileArgs = options.fileargs and mw.text.trim(options.fileargs) if fileArgs == '' then fileArgs = nil end local leadStart = nil -- have we found some text yet? local t = "" -- the stripped down output text local fileText = "" -- output text with concatenated [[File:Foo|...]]\n entries local files = 0 -- how many images so far local paras = 0 -- how many paragraphs so far local startLine = true -- at the start of a line (no non-spaces found since last \n)? text = mw.ustring.gsub(text,"^%s*","") -- remove initial white space -- Add named files local f = options.files if f and mw.ustring.match(f, "[^%d%s%-,]") then -- filename rather than number list f = mw.ustring.gsub(f, "^%s*File%s*:%s*", "", 1) f = mw.ustring.gsub(f, "^%s*Image%s*:%s*", "", 1) f = "[[File:" .. f .. "|thumb]]" f = modifyImage(f, "thumb") f = modifyImage(f, fileArgs) if checkImage(f) then fileText = fileText .. f .. "\n" end end repeat -- loop around parsing a template, image or paragraph local token = mw.ustring.match(text, "^%b{}%s*") or false -- {{Template}} or {| Table |} if not leadStart and not token then token = mw.ustring.match(text, "^%b<>%s*%b{}%s*") end -- allow <tag>{{template}} before lead has started local line = mw.ustring.match(text, "[^\n]*") if token and line and mw.ustring.len(token) < mw.ustring.len(line) then -- template is followed by text (but it may just be other templates) line = mw.ustring.gsub(line, "%b{}", "") -- remove all templates from this line line = mw.ustring.gsub(line, "%b<>", "") -- remove all HTML tags from this line -- if anything is left, other than an incomplete further template or an image, keep the template: it counts as part of the line if mw.ustring.find(line, "%S") and not matchAny(line, "^%s*", { "{{", "%[%[%s*[Ff]ile:", "%[%[%s*[Ii]mage:" }, "") then token = nil end end if token then -- found a template which is not the prefix to a line of text if is(options.keepTables) and mw.ustring.sub(token, 1, 2) == '{|' then t = t .. token -- keep tables elseif mw.ustring.sub(token, 1, 3) == '{{#' then t = t .. token -- keep parser functions elseif leadStart then -- lead has already started, so keep the template within the text, unless it's a whole line (navbox etc.) if not is(options.filesOnly) and not startLine then t = t .. token end elseif matchAny(token, "^{{%s*", wantedBlockTemplates, "%s*%f[|}]") then t = t .. token -- keep wanted block templates elseif files < maxfile then -- discard template, but if we are still collecting images... local images = argImage(token) or {} if not images then local image = parseImage(token, false) -- look for embedded [[File:...]], |image=, etc. if image then table.insert(images, image) end end for _, image in ipairs(images) do if files < maxfile and checkImage(image) then -- if image is found and qualifies (not a sound file, non-free, etc.) files = files + 1 -- count the file, whether displaying it or not if options.fileflags and options.fileflags[files] then -- if displaying this image image = modifyImage(image, "thumb") image = modifyImage(image, fileArgs) fileText = fileText .. image end end end end else -- the next token in text is not a template token = parseImage(text, true) if token then -- the next token in text looks like an image if files < maxfile and checkImage(token) then -- if more images are wanted and this is a wanted image files = files + 1 if options.fileflags and options.fileflags[files] then local image = token -- copy token for manipulation by adding |right etc. without changing the original image = modifyImage(image, fileArgs) fileText = fileText .. image end end else -- got a paragraph, which ends at a file, image, blank line or end of text local afterEnd = mw.ustring.len(text) + 1 local blankPosition = mw.ustring.find(text, "\n%s*\n") or afterEnd -- position of next paragraph delimiter (or end of text) local endPosition = math.min( -- find position of whichever comes first: [[File:, [[Image: or paragraph delimiter mw.ustring.find(text, "%[%[%s*[Ff]ile%s*:") or afterEnd, mw.ustring.find(text, "%[%[%s*[Ii]mage%s*:") or afterEnd, blankPosition) token = mw.ustring.sub(text, 1, endPosition-1) if blankPosition < afterEnd and blankPosition == endPosition then -- paragraph ends with a blank line token = token .. mw.ustring.match(text, "\n%s*\n", blankPosition) end local isHatnote = not(leadStart) and mw.ustring.sub(token, 1, 1) == ':' if not isHatnote then leadStart = leadStart or mw.ustring.len(t) + 1 -- we got a paragraph, so mark the start of the lead section paras = paras + 1 if allParagraphs or (options.paraflags and options.paraflags[paras]) then t = t .. token end -- add if this paragraph wanted end end -- of "else got a paragraph" end -- of "else not a template" if token then text = mw.ustring.sub(text, mw.ustring.len(token)+1) end -- remove parsed token from remaining text startLine = mw.ustring.find(token, "\n%s*$") -- will the next token be the first non-space on a line? until not text or text == "" or not token or token == "" -- loop until all text parsed text = mw.ustring.gsub(t, "\n+$", "") -- remove trailing line feeds, so "{{Transclude text excerpt|Foo}} more" flows on one line return fileText .. text end local function cleanupText(text, options) text = mw.ustring.gsub(text, "<!%-%-.-%-%->","") -- remove HTML comments text = mw.ustring.gsub(text, "<[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-</[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove noinclude bits if mw.ustring.find(text, "[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]") then -- avoid expensive search if possible text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text between onlyinclude sections text = mw.ustring.gsub(text, "^.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text before first onlyinclude section text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.*", "") -- remove text after last onlyinclude section end if not is(options.keepSubsections) then text = mw.ustring.gsub(text, "\n==.*","") -- remove first ==Heading== and everything after it text = mw.ustring.gsub(text, "^==.*","") -- ...even if the lead is empty end if not is(options.keepRefs) then text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]-/%s*>", "") -- remove refs cited elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff].->.-<%s*/%s*[Rr][Ee][Ff]%s*>", "") -- remove refs text = mw.ustring.gsub(text, "%b{}", stripTemplate) -- remove unwanted templates such as references end text = mw.ustring.gsub(text, "<%s*[Ss][Cc][Oo][Rr][Ee].->.-<%s*/%s*[Ss][Cc][Oo][Rr][Ee]%s*>", "") -- remove musical scores text = mw.ustring.gsub(text, "<%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp].->.-<%s*/%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp]%s*>", convertImageMap) -- convert imagemaps into standard images text = mw.ustring.gsub(text, "%s*{{%s*[Tt][Oo][Cc].-}}", "") -- remove most common tables of contents text = mw.ustring.gsub(text, "%s*__[A-Z]*TOC__", "") -- remove TOC behavior switches text = mw.ustring.gsub(text, "\n%s*{{%s*[Pp]p%-.-}}", "\n") -- remove protection templates text = mw.ustring.gsub(text, "%s*{{[^{|}]*[Ss]idebar%s*}}", "") -- remove most sidebars text = mw.ustring.gsub(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}", "") -- remove most stub templates text = mw.ustring.gsub(text, "%s*%[%[%s*:?[Cc]ategory:.-%]%]", "") -- remove categories text = mw.ustring.gsub(text, "^:[^\n]+\n","") -- remove DIY hatnote indented with a colon return text end -- Parse a ==Section== from a page local function getSection(text, section, mainOnly) local escapedSection = mw.ustring.gsub(mw.uri.decode(section), "([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1") -- %26 → & etc, then ^ → %^ etc. local level, content = mw.ustring.match(text .. "\n", "\n(==+)%s*" .. escapedSection .. "%s*==.-\n(.*)") if not content then return luaError("sectionNotFound", section) end local nextSection if mainOnly then nextSection = "\n==.*" -- Main part of section terminates at any level of header else nextSection = "\n==" .. mw.ustring.rep("=?", #level - 2) .. "[^=].*" -- "===" → "\n===?[^=].*", matching "==" or "===" but not "====" end content = mw.ustring.gsub(content, nextSection, "") -- remove later sections with headings at this level or higher if mw.ustring.match(content, "^%s*$") then return luaError("sectionEmpty", section) end return content end -- Parse a <section begin="Name of the fragment"> -- @todo Implement custom parsing of fragments rather than relying on #lst local function getFragment(page, fragment) local frame = mw.getCurrentFrame() local text = frame:callParserFunction('#lst', page, fragment) if mw.ustring.match(text, "^%s*$") then return luaError("fragmentEmpty", fragment) end return text end -- Remove unmatched <tag> or </tag> tags local function fixTags(text, tag) local startCount = 0 for i in mw.ustring.gmatch(text, "<%s*" .. tag .. "%f[^%w_].->") do startCount = startCount + 1 end local endCount = 0 for i in mw.ustring.gmatch(text, "<%s*/" .. tag .. "%f[^%w_].->") do endCount = endCount + 1 end if startCount > endCount then -- more <tag> than </tag>: remove the last few <tag>s local i = 0 text = mw.ustring.gsub(text, "<%s*" .. tag .. "%f[^%w_].->", function(t) i = i + 1 if i > endCount then return "" else return nil end end) -- "end" here terminates the anonymous replacement function(t) passed to gsub elseif endCount > startCount then -- more </tag> than <tag>: remove the first few </tag>s text = mw.ustring.gsub(text, "<%s*/" .. tag .. "%f[^%w_].->", "", endCount - startCount) end return text end local function fixTemplates(text) repeat -- hide matched {{template}}s including nested templates local t = text text = mw.ustring.gsub(text, "{(%b{})}", "\27{\27%1\27}\27") -- {{sometemplate}} → E{Esometemplate}E}E where E represents escape text = mw.ustring.gsub(text, "(< *math[^>]*>[^<]-)}}(.-< */math *>)", "%1}\27}\27%2") -- <math>\{sqrt\{hat{x}}</math> → <math>\{sqrt\{hat{x}E}E</math> until text == t text = text.gsub(text, "([{}])%1[^\27].*", "") -- remove unmatched {{, }} and everything thereafter, avoiding }E}E etc. text = text.gsub(text, "([{}])%1$", "") -- remove unmatched {{, }} at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: E{E{ → {{, etc. return text end local function fixLinks(text) repeat -- hide matched [[wikilink]]s including nested links like [[File:Example.jpg|Some [[nested]] link.]] local t = text text = mw.ustring.gsub(text, "%[(%b[])%]", "\27[\27%1\27]\27") until text == t text = text.gsub(text, "([%[%]])%1[^\27].*", "") -- remove unmatched [[ or ]] and everything thereafter, avoiding ]E]E etc. text = text.gsub(text, "([%[%]])%1$", "") -- remove unmatched [[ or ]] at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: ]E]E → ]], etc. return text end -- Replace the first call to each reference defined outside of the text for the full reference, to prevent undefined references -- Then prefix the page title to the reference names to prevent conflicts -- that is, replace <ref name="Foo"> for <ref name="Title of the article Foo"> -- and also <ref name="Foo" /> for <ref name="Title of the article Foo" /> -- also remove reference groups: <ref name="Foo" group="Bar"> for <ref name="Title of the article Foo"> -- and <ref group="Bar"> for <ref> -- @todo The current regex may fail in cases with both kinds of quotes, like <ref name="Darwin's book"> local function fixRefs(text, page, full) if not full then full = getContent(page) end local refNames = {} local refName local refBody local position = 1 while position < mw.ustring.len(text) do refName, position = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>]+)[\"']?[^>]*/%s*>()", position) if refName then refName = mw.text.trim(refName) if not refNames[refName] then -- make sure we process each ref name only once table.insert(refNames, refName) refName = mw.ustring.gsub(refName, "[%^%$%(%)%.%[%]%*%+%-%?%%]", "%%%0") -- escape special characters refBody = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if not refBody then -- the ref body is not in the excerpt refBody = mw.ustring.match(full, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^/>]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if refBody then -- the ref body was found elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>]*/?%s*>", refBody, 1) end end end else position = mw.ustring.len(text) end end text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>/]+)[\"']?[^>/]*(/?)%s*>", '<ref name="' .. page .. ' %1" %2>') text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*group%s*=%s*[\"']?[^\"'>/]+[\"']%s*>", '<ref>') return text end -- Replace the bold title or synonym near the start of the article by a wikilink to the article function linkBold(text, page) local lang = mw.language.getContentLanguage() local position = mw.ustring.find(text, "'''" .. lang:ucfirst(page) .. "'''", 1, true) -- look for "'''Foo''' is..." (uc) or "A '''foo''' is..." (lc) or mw.ustring.find(text, "'''" .. lang:lcfirst(page) .. "'''", 1, true) -- plain search: special characters in page represent themselves if position then local length = mw.ustring.len(page) text = mw.ustring.sub(text, 1, position + 2) .. "[[" .. mw.ustring.sub(text, position + 3, position + length + 2) .. "]]" .. mw.ustring.sub(text, position + length + 3, -1) -- link it else -- look for anything unlinked in bold, assumed to be a synonym of the title (e.g. a person's birth name) text = mw.ustring.gsub(text, "()'''(.-'*)'''", function(a, b) if not mw.ustring.find(b, "%[") then -- if not wikilinked return "'''[[" .. page .. "|" .. b .. "]]'''" -- replace '''Foo''' by '''[[page|Foo]]''' else return nil -- instruct gsub to make no change end end, 1) -- "end" here terminates the anonymous replacement function(a, b) passed to gsub end return text end -- Main function for modules local function get(page, options) if options.errors then errors = options.errors end if not page or page == "" then return luaError("noPage") end local text page, section = mw.ustring.match(page, "([^#]+)#?([^#]*)") text, page = getContent(page) if not page then return luaError("noPage") end if not text then return luaError("pageNotFound", page) end local full = text -- save the full text for later if is(options.fragment) then text = getFragment(page, options.fragment) end if is(section) then text = getSection(text, section) end -- Strip text of all undersirables text = cleanupText(text, options) text = parse(text, options) -- Replace the bold title or synonym near the start of the article by a wikilink to the article text = linkBold(text, page) -- Remove '''bold text''' if requested if is(options.nobold) then text = mw.ustring.gsub(text, "'''", "") end -- Keep only tables if requested if is(options.tablesOnly) then text = getTables(text) end -- Keep only lists if requested if is(options.listsOnly) then text = getLists(text) end -- Seek and destroy unterminated templates, links and tags text = fixTemplates(text) text = fixLinks(text) text = fixTags(text, "div") -- Fix broken references if is(options.keepRefs) then text = fixRefs(text, page, full) end -- Add (Full article...) link if options.moreLinkText then text = text .. " ('''[[" .. page .. "|" .. options.moreLinkText .. "]]''')" end return text end -- Main invocation function for templates local function main(frame) local args = parseArgs(frame) local page = args[1] local ok, text = pcall(get, page, args) if not ok then text = errorMessages.prefix .. text if errorCategory and errorCategory ~= '' and mw.title.getCurrentTitle().isContentPage then text = text .. '[[' .. errorCategory .. ']]' end return mw.html.create('div'):addClass('error'):wikitext(text) end return frame:preprocess(text) end local function getMoreLinkText(more) local defaultText = "Full article..." -- default text, same as in [[Template:TFAFULL]] if not more or more == '' then -- nil/empty => use default return defaultText end if not yesno(more, true) then -- falsy values => suppress the link return nil end return more end -- Shared invocation function used by templates meant for portals local function portal(frame, template) local args = parseArgs(frame) errors = args['errors'] or false -- disable error reporting unless requested -- There should be at least one argument except with selected=Foo and Foo=Somepage if #args < 1 and not (template == "selected" and args[template] and args[args[template]]) then return wikiError("noPage") end -- Figure out the page to excerpt local page local candidates = {} if template == "lead" then page = args[1] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "selected" then local key = args[template] local count = #args if tonumber(key) then -- normalise article number into the range 1..#args key = key % count if key == 0 then key = count end end page = args[key] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "linked" or template == "listitem" then local source = args[1] local text, source = getContent(source) if not source then return wikiError("noPage") elseif not text then return wikiError("noPage") end local section = args.section if section then -- check relevant section only text = getSection(text, section) if not text then return wikiError("sectionNotFound", section) end end -- Replace annotated links with real links text = mw.ustring.gsub(text, "{{%s*[Aa]nnotated[ _]link%s*|%s*(.-)%s*}}", "[[%1]]") if template == "linked" then for candidate in mw.ustring.gmatch(text, "%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end else -- listitem: first wikilink on a line beginning *, :#, etc. except in "See also" or later section text = mw.ustring.gsub(text, "\n== *See also.*", "") for candidate in mw.ustring.gmatch(text, "\n:*[%*#][^\n]-%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end end elseif template == "random" then for key, value in pairs(args) do if value and type(key) == "number" then table.insert(candidates, mw.text.trim(value)) end end end -- Build an options array for the Excerpt module out of the arguments and the desired defaults local options = { errors = args['errors'] or false, fileargs = args['fileargs'], fileflags = numberFlags( args['files'] ), paraflags = numberFlags( args['paragraphs'] ), moreLinkText = getMoreLinkText(args['more'] ), keepSubsections = args['keepSubsections'], keepRefs = args['keepRefs'], nobold = args['nobold'] } -- Select a random candidate and make sure its valid local text local candidateCount = #candidates if candidateCount > 0 then local candidateKey = 1 local candidateString local candidateArgs if candidateCount > 1 then math.randomseed(os.time()) end while (not text or text == "") and candidateCount > 0 do if candidateCount > 1 then candidateKey = math.random(candidateCount) end -- pick a random candidate candidateString = candidates[candidateKey] if candidateString and candidateString ~= "" then -- We have page or [[page]] or [[page|text]], possibly followed by |opt1|opt2... page, candidateArgs = mw.ustring.match(candidateString, "^%s*(%[%b[]%])%s*|?(.*)") if page and page ~= "" then page = mw.ustring.match(page, "%[%[([^|%]]*)") -- turn [[page|text]] into page, discarding text else -- we have page or page|opt... page, candidateArgs = mw.ustring.match(candidateString, "%s*([^|]*[^|%s])%s*|?(.*)") end -- candidate arguments (even if value is "") have priority over global arguments if candidateArgs and candidateArgs ~= "" then for _, t in pairs(mw.text.split(candidateArgs, "|")) do local k, v = mw.ustring.match(t, "%s*([^=]-)%s*=(.-)%s*$") if k == 'files' then options.fileflags = numberFlags(v) elseif k == 'paragraphs' then options.paraflags = numberFlags(v) elseif k == 'more' then args.more = v else options[k] = v end end end if page and page ~= "" then local section = mw.ustring.match(page, "[^#]+#([^#]+)") -- save the section text, page = getContent(page) -- make sure the page exists if page and page ~= "" and text and text ~= "" then if args.nostubs then local isStub = mw.ustring.find(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}") if isStub then text = nil end end if section and section ~= "" then page = page .. '#' .. section -- restore the section end text = get(page, options) end end end table.remove(candidates, candidateKey) -- candidate processed candidateCount = candidateCount - 1 -- ensure that we exit the loop after all candidates are done end end if not text or text == "" then return wikiError("No valid pages found") end if args.showall then local separator = args.showall if separator == "" then separator = "{{clear}}{{hr}}" end for _, candidate in pairs(candidates) do local t = get(candidate, options) if t ~= "" then text = text .. separator .. t end end end -- Add a collapsed list of pages which might appear if args.list and not args.showall then local list = args.list if list == "" then list = "Other articles" end text = text .. "{{collapse top|title={{resize|85%|" ..list .. "}}|bg=fff}}{{hlist" for _, candidate in pairs(candidates) do if mw.ustring.match(candidate, "%S") then text = text .. "|[[" .. mw.text.trim(candidate) .. "]]" end end text = text .. "}}\n{{collapse bottom}}" end return frame:preprocess(text) end -- Old invocation function used by {{Excerpt}} local function excerpt(frame) local args = parseArgs(frame) -- Make sure the requested page exists local page = args[1] or args.article or args.source or args.page if not page then return wikiError("noPage") end local title = mw.title.new(page) if not title then return wikiError("noPage") end if title.isRedirect then title = title.redirectTarget end if not title.exists then return wikiError("pageNotFound", page) end page = title.prefixedText -- Define some useful variables local section = args[2] or args.section or mw.ustring.match(args[1], "[^#]+#([^#]+)") local tag = args.tag or 'div' -- Define the HTML elements local block = mw.html.create(tag):addClass('excerpt-block') if is(args.indicator) then block:addClass('excerpt-indicator') end local style = frame:extensionTag{ name = 'templatestyles', args = { src = 'Excerpt/styles.css' } } local hatnote if not args.nohat then if args.this then hatnote = args.this elseif args.indicator then hatnote = 'This is' elseif args.only == 'file' then hatnote = 'This file is' elseif args.only == 'file' then hatnote = 'These files are' elseif args.only == 'list' then hatnote = 'This list is' elseif args.only == 'lists' then hatnote = 'These lists are' elseif args.only == 'table' then hatnote = 'This table is' elseif args.only == 'tables' then hatnote = 'These tables are' else hatnote = 'This section is' end hatnote = hatnote .. ' an excerpt from ' if section then hatnote = hatnote .. '[[' .. page .. '#' .. section .. '|' .. page .. ' § ' .. section .. ']]' else hatnote = hatnote .. '[[' .. page .. ']]' end hatnote = hatnote .. "''" .. '<span class="mw-editsection-like plainlinks"><span class="mw-editsection-bracket">[</span>[' hatnote = hatnote .. title:fullUrl('action=edit') .. ' edit' hatnote = hatnote .. ']<span class="mw-editsection-bracket">]</span></span>' .. "''" hatnote = require('Module:Hatnote')._hatnote(hatnote, {selfref=true}) or wikiError('Error generating hatnote') end -- Build the module options out of the template arguments and the desired defaults local options = { fileflags = numberFlags( args['files'] or 1 ), paraflags = numberFlags( args['paragraphs'] ), filesOnly = is( args['only'] == 'file' or args['only'] == 'files' ), listsOnly = is( args['only'] == 'list' or args['only'] == 'lists'), tablesOnly = is( args['only'] == 'table' or args['only'] == 'tables' ), keepTables = is( args['tables'] or true ), keepRefs = is( args['references'] or true ), keepSubsections = is( args['subsections'] ), nobold = not is( args['bold'] ), fragment = args['fragment'] } -- Get the excerpt itself if section then page = page .. '#' .. section end local ok, excerpt = pcall(e.get, page, options) if not ok then return wikiError(excerpt) end excerpt = "\n" .. excerpt -- line break is necessary to prevent broken tables and lists if mw.title.getCurrentTitle().isContentPage then excerpt = excerpt .. '[[Category:Articles with excerpts]]' end excerpt = frame:preprocess(excerpt) excerpt = mw.html.create(tag):addClass('excerpt'):wikitext(excerpt) -- Combine and return the elements return block:node(style):node(hatnote):node(excerpt) end -- Entry points for templates function p.main(frame) return main(frame) end function p.wikiError(message, value) return wikiError(message, value) end function p.lead(frame) return portal(frame, "lead") end -- {{Transclude lead excerpt}} reads a randomly selected article linked from the given page function p.linked(frame) return portal(frame, "linked") end -- {{Transclude linked excerpt}} reads a randomly selected article linked from the given page function p.listitem(frame) return portal(frame, "listitem") end -- {{Transclude list item excerpt}} reads a randomly selected article listed on the given page function p.random(frame) return portal(frame, "random") end -- {{Transclude random excerpt}} reads any article (default for invoke with one argument) function p.selected(frame) return portal(frame, "selected") end -- {{Transclude selected excerpt}} reads the article whose key is in the selected= parameter function p.excerpt(frame) return excerpt(frame) end -- {{Excerpt}} transcludes part of an article into another article -- Entry points for other Lua modules function p.get(page, options) return get(page, options) end function p.getContent(page) return getContent(page) end function p.getSection(text, section) return getSection(text, section) end function p.getTables(text, options) return getTables(text, options) end function p.getLists(text, options) return getLists(text, options) end function p.parse(text, options) return parse(text, options) end function p.parseImage(text, start) return parseImage(text, start) end function p.parseArgs(frame) return parseArgs(frame) end function p.argImage(text) return argImage(text) end function p.checkImage(image) return checkImage(image) end function p.cleanupText(text, options) return cleanupText(text, options) end function p.luaError(message, value) return luaError(message, value) end function p.is(value) return is(value) end function p.numberFlags(str) return numberFlags(str) end function p.getMoreLinkText(more) return getMoreLinkText(more) end -- Entry points for backwards compatibility function p.getsection(text, section) return getSection(text, section) end function p.parseimage(text, start) return parseImage(text, start) end function p.checkimage(image) return checkImage(image) end function p.argimage(text) return argImage(text) end function p.numberflags(str) return numberFlags(str) end return p 0fd212f9d1df8ba2840379c231d134db324faa2b 2620 2617 2022-09-13T01:43:43Z S30Z 2 Scribunto text/plain -- ATTENTION ! -- Prefer Module:Excerpt whenever possible -- Name of the category to track content pages with errors local errorCategory = "Articles with broken excerpts" -- Error messages local errorMessages = { prefix = "Excerpt error: ", noPage = "No page given", pageNotFound = "Page '%s' not found", leadEmpty = "Lead section is empty", sectionEmpty = "Section '%s' is empty", sectionNotFound = "Section '%s' not found", fragmentEmpty = "Fragment '%s' is empty", fragmentNotFound = "Fragment '%s' not found" } -- Regular expressions to match all aliases of the file namespace local fileNamespaces = { "[Ff]ile", "[Ii]mage" } -- Regular expressions to match all image parameters local imageParams = { {"thumb", "thumbnail", "frame", "framed", "frameless"}, {"right", "left", "center", "none"}, {"baseline", "middle", "sub", "super", "text-top", "text-bottom", "top", "bottom"} } -- Regular expressions to match all infobox parameters for image captions local captionParams = { "[^=|]*[Cc]aption[^=|]*", "[^=|]*[Ll]egend[^=|]*" } -- Regular expressions to match all inline templates that are undesirable in excerpts local unwantedInlineTemplates = { "[Ee]fn", "[Ee]fn%-[lu][arg]", "[Ee]fn [%a ]-", "[Ee]l[mn]", "[Rr]p?", "[Ss]fn[bmp]", "[Ss]f[bn]", "[Nn]ote[Tt]ag", "#[Tt]ag:%s*[Rr]ef", "[Rr]efn?", "[CcDd]n", "[Cc]itation[%- _]needed", "[Dd]isambiguation needed", "[Ff]eatured article", "[Gg]ood article", "[Dd]ISPLAYTITLE", "[Ss]hort[ _]+description", "[Cc]itation", "[Cc]ite[%- _]+[%w_%s]-", "[Cc]oor[%w_%s]-", "[Uu]?n?[Rr]eliable source[%?%w_%s]-", "[Rr]s%??", "[Vv]c", "[Vv]erify credibility", "[Bb]y[ _]*[Ww]ho[m]*%??", "[Ww]ikisource[ -_]*multi", "[Ii]nflation[ _/-]*[Ff]n", "[Bb]iblesource", -- aliases for Clarification needed "[Cc]f[ny]", "[Cc]larification[ _]+inline", "[Cc]larification[%- _]*needed", "[Cc]larification", "[Cc]larify%-inline", "[Cc]larify%-?me", "[Cc]larify[ _]+inline", "[Cc]larify", "[Cc]LARIFY", "[Cc]onfusing%-inline", "[Cc]onfusing%-short", "[Ee]xplainme", "[Hh]uh[ _]*%??", "[Ww]hat%?", "[Ii]nline[ _]+[Uu]nclear", "[Ii]n[ _]+what[ _]+sense", "[Oo]bscure", "[Pp]lease[ _]+clarify", "[Uu]nclear[ _]+inline", "[Ww]hat's[ _]+this%?", "[Gg]eoQuelle", "[Nn]eed[s]+[%- _]+[Ii][Pp][Aa]", "[Ii]PA needed", -- aliases for Clarification needed lead "[Cc]itation needed %(?lea?de?%)?", "[Cc]nl", "[Ff]act %(?lea?de?%)?", "[Ll]ead citation needed", "[Nn]ot in body", "[Nn]ot verified in body", -- Primary source etc. "[Pp]s[ci]", "[Nn]psn", "[Nn]on%-primary[ _]+source[ _]+needed", "[Ss]elf%-published[%w_%s]-", "[Uu]ser%-generated[%w_%s]-", "[Pp]rimary source[%w_%s]-", "[Ss]econdary source[%w_%s]-", "[Tt]ertiary source[%w_%s]-", "[Tt]hird%-party[%w_%s]-", -- aliases for Disambiguation (page) and similar "[Bb]egriffsklärung", "[Dd][Aa][Bb]", "[Dd]big", "[%w_%s]-%f[%w][Dd]isam[%w_%s]-", "[Hh][Nn][Dd][Ii][Ss]", -- aliases for Failed verification "[Bb]adref", "[Ff]aile?[ds] ?[rv][%w_%s]-", "[Ff][Vv]", "[Nn][Ii]?[Cc][Gg]", "[Nn]ot ?in ?[crs][%w_%s]-", "[Nn]ot specifically in source", "[Vv]erification[%- _]failed", -- aliases for When "[Aa]s[ _]+of[ _]+when%??", "[Aa]s[ _%-]+of%??", "[Cc]larify date", "[Dd]ate[ _]*needed", "[Nn]eeds?[ _]+date", "[Rr]ecently", "[Ss]ince[ _]+when%??", "[Ww]HEN", "[Ww]hen%??", -- aliases for Update "[Nn]ot[ _]*up[ _]*to[ _]*date","[Oo]u?[Tt][Dd]","[Oo]ut[%- _]*o?f?[%- _]*dated?", "[Uu]pdate", "[Uu]pdate[ _]+sect", "[Uu]pdate[ _]+Watch", -- aliases for Pronunciation needed "[Pp]ronunciation%??[%- _]*n?e?e?d?e?d?", "[Pp]ronounce", "[Rr]equested[%- _]*pronunciation", "[Rr]e?q?pron", "[Nn]eeds[%- _]*pronunciation", -- Chart, including Chart/start etc. "[Cc]hart", "[Cc]hart/[%w_%s]-", -- Cref and others "[Cc]ref2?", "[Cc]note", -- Explain and others "[Ee]xplain", "[Ff]urther[ ]*explanation[ ]*needed", "[Ee]laboration[ ]*needed", "[Ee]xplanation[ ]*needed", -- TOC templates "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Tt][Oo][Cc][8]*[5]*", "[Tt][Oo][Cc]", "09[Aa][Zz]", "[Tt][Oo][Cc][ ]*[Cc][Oo][Mm][Pp][Aa][Cc][Tt]", "[Tt][Oo][Cc][ ]*[Ss][Mm][Aa][Ll][Ll]", "[Cc][Oo][Mm][Pp][Aa][Cc][Tt][ _]*[Aa][Ll][Pp][Hh][Aa][Bb][Ee][Tt][Ii][Cc][ _]*[Tt][Oo][Cc]", "DEFAULTSORT:.-", "[Oo]ne[ _]+source", "[Cc]ontains[ _]+special[ _]+characters", "[Ii]nfobox[ _]+Chinese" } -- Regular expressions to match all block templates that are desirable in excerpts local wantedBlockTemplates = { "[Bb]asketball[ _]roster[ _]header", "[Cc]abinet[ _]table[^|}]*", "[Cc]hart[^|}]*", "[Cc]lear", "[Cc]ol[^|}]*", -- all column templates "COVID-19[ _]pandemic[ _]data[^|}]*", "[Cc]ycling[ _]squad[^|}]*", "[Dd]ynamic[ _]list", "[Ee]lection[ _]box[^|}]*", "[Gg]allery", "[Gg]raph[^|}]*", "[Hh]idden", "[Hh]istorical[ _]populations", "[Ll]egend[ _]inline", "[Pp]lainlist", "[Pp]layer[^|}]*", "[Ss]eries[ _]overview", "[Ss]ide[ _]box", "[Ss]witcher", "[Tt]ree[ _]chart[^|}]*", "[Tt]elevision[ _]ratings[ _]graph" } local yesno = require('Module:Yesno') local p = {} -- Helper function to test for truthy and falsy values local function is(value) if not value or value == "" or value == "0" or value == "false" or value == "no" then return false end return true end -- Error handling function -- Throws a Lua error or returns an empty string if error reporting is disabled errors = true -- show errors by default local function luaError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) error(message, 2) end -- Error handling function -- Returns a wiki friendly error or an empty string if error reporting is disabled local function wikiError(message, value) if not is(errors) then return '' end -- error reporting is disabled message = errorMessages[message] or message or '' message = mw.ustring.format(message, value) message = errorMessages.prefix .. message if mw.title.getCurrentTitle().isContentPage then local errorCategory = mw.title.new(errorCategory, 'Category') if errorCategory then message = message .. '[[' .. errorCategory.prefixedText .. ']]' end end message = mw.html.create('div'):addClass('error'):wikitext(message) return message end -- Helper function to match from a list regular expressions -- Like so: match pre..list[1]..post or pre..list[2]..post or ... local function matchAny(text, pre, list, post, init) local match = {} for i = 1, #list do match = { mw.ustring.match(text, pre .. list[i] .. post, init) } if match[1] then return unpack(match) end end return nil end -- Helper function to convert imagemaps into standard images local function convertImageMap(imagemap) local image = matchAny(imagemap, "[>\n]%s*", fileNamespaces, "[^\n]*") if image then return "<!--imagemap-->[[" .. mw.ustring.gsub(image, "[>\n]%s*", "", 1) .. "]]" else return "" -- remove entire block if image can't be extracted end end -- Helper function to convert a comma-separated list of numbers or min-max ranges into a list of booleans -- For example: "1,3-5" to {1=true,2=false,3=true,4=true,5=true} local function numberFlags(str) if not str then return {} end local flags = {} local ranges = mw.text.split(str, ",") -- parse ranges: "1,3-5" to {"1","3-5"} for _, r in pairs(ranges) do local min, max = mw.ustring.match(r, "^%s*(%d+)%s*[-–—]%s*(%d+)%s*$") -- "3-5" to min=3 max=5 if not max then min, max = mw.ustring.match(r, "^%s*((%d+))%s*$") end -- "1" to min=1 max=1 if max then for p = min, max do flags[p] = true end end end return flags end -- Helper function to convert template arguments into an array of arguments fit for get() local function parseArgs(frame) local args = {} for key, value in pairs(frame:getParent().args) do args[key] = value end for key, value in pairs(frame.args) do args[key] = value end -- args from a Lua call have priority over parent args from template args.paraflags = numberFlags(args["paragraphs"] or "") -- parse paragraphs: "1,3-5" to {"1","3-5"} args.fileflags = numberFlags(args["files"] or "") -- parse file numbers return args end -- simulate {{Airreg}} without the footnote, given "N|485US|," or similar local function airreg(p) local s = mw.text.split(p, "%s*|%s*") if s[1] ~= "N" and s[1] ~= "HL" and s[1] ~= "JA" then s[1]=s[1] .. "-" end return table.concat(s, "") end -- Helper function to remove unwanted templates and pseudo-templates such as #tag:ref and DEFAULTSORT local function stripTemplate(t) -- If template is unwanted then return "" (gsub will replace by nothing), else return nil (gsub will keep existing string) if matchAny(t, "^{{%s*", unwantedInlineTemplates, "%s*%f[|}]") then return "" end -- If template is wanted but produces an unwanted reference then return the string with |Note=, |ref or |shortref removed local noRef = mw.ustring.gsub(t, "|%s*Note%s*=.-%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*ref%s*%f[|}]", "") noRef = mw.ustring.gsub(noRef, "|%s*shortref%s*%f[|}]", "") -- If a wanted template has unwanted nested templates, purge them too noRef = mw.ustring.sub(noRef, 1, 2) .. mw.ustring.gsub(mw.ustring.sub(noRef, 3), "%b{}", stripTemplate) -- Replace {{audio}} by its text parameter: {{Audio|Foo.ogg|Bar}} → Bar noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]udio.-|.-|(.-)%f[|}].*", "%1") -- Replace {{Nihongo foot}} by its text parameter: {{Nihongo foot|English|英語|eigo}} → English noRef = mw.ustring.gsub(noRef, "^{{%s*[Nn]ihongo[ _]+foot%s*|(.-)%f[|}].*", "%1") -- Replace {{Airreg}} by its text parameter: {{Airreg|N|485US|,}} → N485US, noRef = mw.ustring.gsub(noRef, "^{{%s*[Aa]irreg%s*|%s*(.-)}}", airreg) if noRef ~= t then return noRef end return nil -- not an unwanted template: keep end -- Get a page's content, following redirects -- Also returns the page name, or the target page name if a redirect was followed, or false if no page found -- For file pages, returns the content of the file description page local function getContent(page) local title = mw.title.new(page) if not title then return false, false end local target = title.redirectTarget if target then title = target end return title:getContent(), title.prefixedText end -- Get the tables only local function getTables(text, options) local tables = {} for candidate in mw.ustring.gmatch(text, "%b{}") do if mw.ustring.sub(candidate, 1, 2) == '{|' then table.insert(tables, candidate) end end return table.concat(tables, '\n') end -- Get the lists only local function getLists(text, options) local lists = {} for list in mw.ustring.gmatch(text, "\n[*#][^\n]+") do table.insert(lists, list) end return table.concat(lists, '\n') end -- Check image for suitability local function checkImage(image) local page = matchAny(image, "", fileNamespaces, "%s*:[^|%]]*") -- match File:(name) or Image:(name) if not page then return false end return true end -- Attempt to parse [[File:...]] or [[Image:...]], either anywhere (start=false) or at the start only (start=true) local function parseImage(text, start) local startre = "" if start then startre = "^" end -- a true flag restricts search to start of string local image = matchAny(text, startre .. "%[%[%s*", fileNamespaces, "%s*:.*") -- [[File: or [[Image: ... if image then image = mw.ustring.match(image, "%b[]%s*") -- matching [[...]] to handle wikilinks nested in caption end return image end -- Parse a caption, which ends at a | (end of parameter) or } (end of infobox) but may contain nested [..] and {..} local function parseCaption(caption) if not caption then return nil end local length = mw.ustring.len(caption) local position = 1 while position <= length do local linkStart, linkEnd = mw.ustring.find(caption, "%b[]", position) linkStart = linkStart or length + 1 -- avoid comparison with nil when no link local templateStart, templateEnd = mw.ustring.find(caption, "%b{}", position) templateStart = templateStart or length + 1 -- avoid comparison with nil when no template local argEnd = mw.ustring.find(caption, "[|}]", position) or length + 1 if linkStart < templateStart and linkStart < argEnd then position = linkEnd + 1 -- skip wikilink elseif templateStart < argEnd then position = templateEnd + 1 -- skip template else -- argument ends before the next wikilink or template return mw.ustring.sub(caption, 1, argEnd - 1) end end return caption -- No terminator found: return entire caption end -- Attempt to construct a [[File:...]] block from {{infobox ... |image= ...}} local function argImage(text) local token = nil local hasNamedArgs = mw.ustring.find(text, "|") and mw.ustring.find(text, "=") if not hasNamedArgs then return nil end -- filter out any template that obviously doesn't contain an image -- ensure image map is captured text = mw.ustring.gsub(text, '<!%-%-imagemap%-%->', '|imagemap=') -- find all images local hasImages = false local images = {} local captureFrom = 1 while captureFrom < mw.ustring.len(text) do local argname, position, image = mw.ustring.match(text, "|%s*([^=|]-[Ii][Mm][Aa][Gg][Ee][^=|]-)%s*=%s*()(.*)", captureFrom) if image then -- ImageCaption=, image_size=, image_upright=, etc. do not introduce an image local insertimage = mw.ustring.match(text, "|%s*([^=|]-[Ii][Mm][Aa][Gg][Ee][^=|]-)%s*=%s*()(.([^=|]-[Jj][Pp][Gg][^=|]-))", captureFrom) local lcArgName = mw.ustring.lower(argname) if mw.ustring.find(lcArgName, "caption") or mw.ustring.find(lcArgName, "size") or mw.ustring.find(lcArgName, "upright") then -- image = nil end end if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|]-[Pp][Hh][Oo][Tt][Oo][^=|]-%s*=%s*()(.*)", captureFrom) if image then hasImages = true images[position] = image captureFrom = position else captureFrom = mw.ustring.len(text) end end captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, image = mw.ustring.match(text, "|%s*[^=|{}]-%s*=%s*()%[?%[?([^|{}]*%.%a%a%a%a?)%s*%f[|}]", captureFrom) if image then hasImages = true if not images[position] then images[position] = image end captureFrom = position else captureFrom = mw.ustring.len(text) end end if not hasImages then return nil end -- find all captions local captions = {} captureFrom = 1 while captureFrom < mw.ustring.len(text) do local position, caption = matchAny(text, "|%s*", captionParams, "%s*=%s*()([^\n]+)", captureFrom) if caption then -- extend caption to parse "| caption = Foo {{Template\n on\n multiple lines}} Bar\n" local bracedCaption = mw.ustring.match(text, "^[^\n]-%b{}[^\n]+", position) if bracedCaption and bracedCaption ~= "" then caption = bracedCaption end caption = mw.text.trim(caption) local captionStart = mw.ustring.sub(caption, 1, 1) if captionStart == '|' or captionStart == '}' then caption = nil end end if caption then -- find nearest image, and use same index for captions table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not captions[i] then captions[i] = parseCaption(caption) end end end captureFrom = position else captureFrom = mw.ustring.len(text) end end -- find all alt text local altTexts = {} for position, altText in mw.ustring.gmatch(text, "|%s*[Aa][Ll][Tt]%s*=%s*()([^\n]*)") do if altText then -- altText is terminated by }} or |, but first skip any matched [[...]] and {{...}} local lookFrom = math.max( -- find position after whichever comes last: start of string, end of last ]] or end of last }} mw.ustring.match(altText, ".*{%b{}}()") or 1, -- if multiple {{...}}, .* consumes all but one, leaving the last for %b mw.ustring.match(altText, ".*%[%b[]%]()") or 1) local length = mw.ustring.len(altText) local afterText = math.min( -- find position after whichever comes first: end of string, }} or | mw.ustring.match(altText, "()}}", lookFrom) or length+1, mw.ustring.match(altText, "()|", lookFrom) or length+1) altText = mw.ustring.sub(altText, 1, afterText-1) -- chop off |... or }}... which is not part of [[...]] or {{...}} altText = mw.text.trim(altText) local altTextStart = mw.ustring.sub(altText, 1, 1) if altTextStart == '|' or altTextStart == '}' then altText = nil end end if altText then -- find nearest image, and use same index for altTexts table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not altTexts[i] then altTexts[i] = altText end end end end end -- find all image sizes local imageSizes = {} for position, imageSizeMatch in mw.ustring.gmatch(text, "|%s*[Ii][Mm][Aa][Gg][Ee][ _]?[Ss][Ii][Zz][Ee]%s*=%s*()([^}|\n]*)") do local imageSize = mw.ustring.match(imageSizeMatch, "=%s*([^}|\n]*)") if imageSize then imageSize = mw.text.trim(imageSize ) local imageSizeStart = mw.ustring.sub(imageSize, 1, 1) if imageSizeStart == '|' or imageSizeStart == '}' then imageSize = nil end end if imageSize then -- find nearest image, and use same index for imageSizes table local i = position while i > 0 and not images[i] do i = i - 1 if images[i] then if not imageSizes[i] then imageSizes[i] = imageSize end end end end end -- sort the keys of the images table (in a table sequence), so that images can be iterated over in order local keys = {} for key, val in pairs(images) do table.insert(keys, key) end table.sort(keys) -- add in relevant optional parameters for each image: caption, alt text and image size local imageTokens = {} for _, index in ipairs(keys) do local image = images[index] local token = parseImage(image, true) -- look for image=[[File:...]] etc. if not token then image = mw.ustring.match(image, "^[^}|\n]*") -- remove later arguments token = "[[" -- Add File: unless name already begins File: or Image: if not matchAny(image, "^", fileNamespaces, "%s*:") then token = token .. "File:" end token = token .. image local caption = captions[index] if caption and mw.ustring.match(caption, "%S") then token = token .. "|" .. caption end local alt = altTexts[index] if alt then token = token .. "|alt=" .. alt end local image_size = imageSizes[index] if image_size and mw.ustring.match(image_size, "%S") then token = token .. "|" .. image_size end token = token .. "]]" end token = mw.ustring.gsub(token, "\n","") .. "\n" table.insert(imageTokens, token) end return imageTokens end local function modifyImage(image, fileArgs) if fileArgs then for _, filearg in pairs(mw.text.split(fileArgs, "|")) do -- handle fileArgs=left|border etc. local fa = mw.ustring.gsub(filearg, "=.*", "") -- "upright=0.75" → "upright" local group = {fa} -- group of "border" is ["border"]... for _, g in pairs(imageParams) do for _, a in pairs(g) do if fa == a then group = g end -- ...but group of "left" is ["right", "left", "center", "none"] end end for _, a in pairs(group) do image = mw.ustring.gsub(image, "|%s*" .. a .. "%f[%A]%s*=[^|%]]*", "") -- remove "|upright=0.75" etc. image = mw.ustring.gsub(image, "|%s*" .. a .. "%s*([|%]])", "%1") -- replace "|left|" by "|" etc. end image = mw.ustring.gsub(image, "([|%]])", "|" .. filearg .. "%1", 1) -- replace "|" by "|left|" etc. end end image = mw.ustring.gsub(image, "(|%s*%d*x?%d+%s*px%s*.-)|%s*%d*x?%d+%s*px%s*([|%]])", "%1%2") -- double px args return image end -- a basic parser to trim down extracted wikitext -- @param text : Wikitext to be processed -- @param options : A table of options... -- options.paraflags : Which number paragraphs to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true}. If not present, all paragraphs will be kept. -- options.fileflags : table of which files to keep, as either a string (e.g. '1,3-5') or a table (e.g. {1=true,2=false,3=true,4=true,5=true} -- options.fileargs : args for the [[File:]] syntax, such as 'left' -- options.filesOnly : only return the files and not the prose local function parse(text, options) local allParagraphs = true -- keep all paragraphs? if options.paraflags then if type(options.paraflags) ~= "table" then options.paraflags = numberFlags(options.paraflags) end for _, v in pairs(options.paraflags) do if v then allParagraphs = false end -- if any para specifically requested, don't keep all end end if is(options.filesOnly) then allParagraphs = false options.paraflags = {} end local maxfile = 0 -- for efficiency, stop checking images after this many have been found if options.fileflags then if type(options.fileflags) ~= "table" then options.fileflags = numberFlags(options.fileflags) end for k, v in pairs(options.fileflags) do if v and k > maxfile then maxfile = k end -- set maxfile = highest key in fileflags end end local fileArgs = options.fileargs and mw.text.trim(options.fileargs) if fileArgs == '' then fileArgs = nil end local leadStart = nil -- have we found some text yet? local t = "" -- the stripped down output text local fileText = "" -- output text with concatenated [[File:Foo|...]]\n entries local files = 0 -- how many images so far local paras = 0 -- how many paragraphs so far local startLine = true -- at the start of a line (no non-spaces found since last \n)? text = mw.ustring.gsub(text,"^%s*","") -- remove initial white space -- Add named files local f = options.files if f and mw.ustring.match(f, "[^%d%s%-,]") then -- filename rather than number list f = mw.ustring.gsub(f, "^%s*File%s*:%s*", "", 1) f = mw.ustring.gsub(f, "^%s*Image%s*:%s*", "", 1) f = "[[File:" .. f .. "|thumb]]" f = modifyImage(f, "thumb") f = modifyImage(f, fileArgs) if checkImage(f) then fileText = fileText .. f .. "\n" end end repeat -- loop around parsing a template, image or paragraph local token = mw.ustring.match(text, "^%b{}%s*") or false -- {{Template}} or {| Table |} if not leadStart and not token then token = mw.ustring.match(text, "^%b<>%s*%b{}%s*") end -- allow <tag>{{template}} before lead has started local line = mw.ustring.match(text, "[^\n]*") if token and line and mw.ustring.len(token) < mw.ustring.len(line) then -- template is followed by text (but it may just be other templates) line = mw.ustring.gsub(line, "%b{}", "") -- remove all templates from this line line = mw.ustring.gsub(line, "%b<>", "") -- remove all HTML tags from this line -- if anything is left, other than an incomplete further template or an image, keep the template: it counts as part of the line if mw.ustring.find(line, "%S") and not matchAny(line, "^%s*", { "{{", "%[%[%s*[Ff]ile:", "%[%[%s*[Ii]mage:" }, "") then token = nil end end if token then -- found a template which is not the prefix to a line of text if is(options.keepTables) and mw.ustring.sub(token, 1, 2) == '{|' then t = t .. token -- keep tables elseif mw.ustring.sub(token, 1, 3) == '{{#' then t = t .. token -- keep parser functions elseif leadStart then -- lead has already started, so keep the template within the text, unless it's a whole line (navbox etc.) if not is(options.filesOnly) and not startLine then t = t .. token end elseif matchAny(token, "^{{%s*", wantedBlockTemplates, "%s*%f[|}]") then t = t .. token -- keep wanted block templates elseif files < maxfile then -- discard template, but if we are still collecting images... local images = argImage(token) or {} if not images then local image = parseImage(token, false) -- look for embedded [[File:...]], |image=, etc. if image then table.insert(images, image) end end for _, image in ipairs(images) do if files < maxfile and checkImage(image) then -- if image is found and qualifies (not a sound file, non-free, etc.) files = files + 1 -- count the file, whether displaying it or not if options.fileflags and options.fileflags[files] then -- if displaying this image image = modifyImage(image, "thumb") image = modifyImage(image, fileArgs) fileText = fileText .. image end end end end else -- the next token in text is not a template token = parseImage(text, true) if token then -- the next token in text looks like an image if files < maxfile and checkImage(token) then -- if more images are wanted and this is a wanted image files = files + 1 if options.fileflags and options.fileflags[files] then local image = token -- copy token for manipulation by adding |right etc. without changing the original image = modifyImage(image, fileArgs) fileText = fileText .. image end end else -- got a paragraph, which ends at a file, image, blank line or end of text local afterEnd = mw.ustring.len(text) + 1 local blankPosition = mw.ustring.find(text, "\n%s*\n") or afterEnd -- position of next paragraph delimiter (or end of text) local endPosition = math.min( -- find position of whichever comes first: [[File:, [[Image: or paragraph delimiter mw.ustring.find(text, "%[%[%s*[Ff]ile%s*:") or afterEnd, mw.ustring.find(text, "%[%[%s*[Ii]mage%s*:") or afterEnd, blankPosition) token = mw.ustring.sub(text, 1, endPosition-1) if blankPosition < afterEnd and blankPosition == endPosition then -- paragraph ends with a blank line token = token .. mw.ustring.match(text, "\n%s*\n", blankPosition) end local isHatnote = not(leadStart) and mw.ustring.sub(token, 1, 1) == ':' if not isHatnote then leadStart = leadStart or mw.ustring.len(t) + 1 -- we got a paragraph, so mark the start of the lead section paras = paras + 1 if allParagraphs or (options.paraflags and options.paraflags[paras]) then t = t .. token end -- add if this paragraph wanted end end -- of "else got a paragraph" end -- of "else not a template" if token then text = mw.ustring.sub(text, mw.ustring.len(token)+1) end -- remove parsed token from remaining text startLine = mw.ustring.find(token, "\n%s*$") -- will the next token be the first non-space on a line? until not text or text == "" or not token or token == "" -- loop until all text parsed text = mw.ustring.gsub(t, "\n+$", "") -- remove trailing line feeds, so "{{Transclude text excerpt|Foo}} more" flows on one line return fileText .. text end local function cleanupText(text, options) text = mw.ustring.gsub(text, "<!%-%-.-%-%->","") -- remove HTML comments text = mw.ustring.gsub(text, "<[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-</[Nn][Oo][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove noinclude bits if mw.ustring.find(text, "[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]") then -- avoid expensive search if possible text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text between onlyinclude sections text = mw.ustring.gsub(text, "^.-<[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>", "") -- remove text before first onlyinclude section text = mw.ustring.gsub(text, "</[Oo][Nn][Ll][Yy][Ii][Nn][Cc][Ll][Uu][Dd][Ee]>.*", "") -- remove text after last onlyinclude section end if not is(options.keepSubsections) then text = mw.ustring.gsub(text, "\n==.*","") -- remove first ==Heading== and everything after it text = mw.ustring.gsub(text, "^==.*","") -- ...even if the lead is empty end if not is(options.keepRefs) then text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]-/%s*>", "") -- remove refs cited elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff].->.-<%s*/%s*[Rr][Ee][Ff]%s*>", "") -- remove refs text = mw.ustring.gsub(text, "%b{}", stripTemplate) -- remove unwanted templates such as references end text = mw.ustring.gsub(text, "<%s*[Ss][Cc][Oo][Rr][Ee].->.-<%s*/%s*[Ss][Cc][Oo][Rr][Ee]%s*>", "") -- remove musical scores text = mw.ustring.gsub(text, "<%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp].->.-<%s*/%s*[Ii][Mm][Aa][Gg][Ee][Mm][Aa][Pp]%s*>", convertImageMap) -- convert imagemaps into standard images text = mw.ustring.gsub(text, "%s*{{%s*[Tt][Oo][Cc].-}}", "") -- remove most common tables of contents text = mw.ustring.gsub(text, "%s*__[A-Z]*TOC__", "") -- remove TOC behavior switches text = mw.ustring.gsub(text, "\n%s*{{%s*[Pp]p%-.-}}", "\n") -- remove protection templates text = mw.ustring.gsub(text, "%s*{{[^{|}]*[Ss]idebar%s*}}", "") -- remove most sidebars text = mw.ustring.gsub(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}", "") -- remove most stub templates text = mw.ustring.gsub(text, "%s*%[%[%s*:?[Cc]ategory:.-%]%]", "") -- remove categories text = mw.ustring.gsub(text, "^:[^\n]+\n","") -- remove DIY hatnote indented with a colon return text end -- Parse a ==Section== from a page local function getSection(text, section, mainOnly) local escapedSection = mw.ustring.gsub(mw.uri.decode(section), "([%^%$%(%)%%%.%[%]%*%+%-%?])", "%%%1") -- %26 → & etc, then ^ → %^ etc. local level, content = mw.ustring.match(text .. "\n", "\n(==+)%s*" .. escapedSection .. "%s*==.-\n(.*)") if not content then return luaError("sectionNotFound", section) end local nextSection if mainOnly then nextSection = "\n==.*" -- Main part of section terminates at any level of header else nextSection = "\n==" .. mw.ustring.rep("=?", #level - 2) .. "[^=].*" -- "===" → "\n===?[^=].*", matching "==" or "===" but not "====" end content = mw.ustring.gsub(content, nextSection, "") -- remove later sections with headings at this level or higher if mw.ustring.match(content, "^%s*$") then return luaError("sectionEmpty", section) end return content end -- Parse a <section begin="Name of the fragment"> -- @todo Implement custom parsing of fragments rather than relying on #lst local function getFragment(page, fragment) local frame = mw.getCurrentFrame() local text = frame:callParserFunction('#lst', page, fragment) if mw.ustring.match(text, "^%s*$") then return luaError("fragmentEmpty", fragment) end return text end -- Remove unmatched <tag> or </tag> tags local function fixTags(text, tag) local startCount = 0 for i in mw.ustring.gmatch(text, "<%s*" .. tag .. "%f[^%w_].->") do startCount = startCount + 1 end local endCount = 0 for i in mw.ustring.gmatch(text, "<%s*/" .. tag .. "%f[^%w_].->") do endCount = endCount + 1 end if startCount > endCount then -- more <tag> than </tag>: remove the last few <tag>s local i = 0 text = mw.ustring.gsub(text, "<%s*" .. tag .. "%f[^%w_].->", function(t) i = i + 1 if i > endCount then return "" else return nil end end) -- "end" here terminates the anonymous replacement function(t) passed to gsub elseif endCount > startCount then -- more </tag> than <tag>: remove the first few </tag>s text = mw.ustring.gsub(text, "<%s*/" .. tag .. "%f[^%w_].->", "", endCount - startCount) end return text end local function fixTemplates(text) repeat -- hide matched {{template}}s including nested templates local t = text text = mw.ustring.gsub(text, "{(%b{})}", "\27{\27%1\27}\27") -- {{sometemplate}} → E{Esometemplate}E}E where E represents escape text = mw.ustring.gsub(text, "(< *math[^>]*>[^<]-)}}(.-< */math *>)", "%1}\27}\27%2") -- <math>\{sqrt\{hat{x}}</math> → <math>\{sqrt\{hat{x}E}E</math> until text == t text = text.gsub(text, "([{}])%1[^\27].*", "") -- remove unmatched {{, }} and everything thereafter, avoiding }E}E etc. text = text.gsub(text, "([{}])%1$", "") -- remove unmatched {{, }} at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: E{E{ → {{, etc. return text end local function fixLinks(text) repeat -- hide matched [[wikilink]]s including nested links like [[File:Example.jpg|Some [[nested]] link.]] local t = text text = mw.ustring.gsub(text, "%[(%b[])%]", "\27[\27%1\27]\27") until text == t text = text.gsub(text, "([%[%]])%1[^\27].*", "") -- remove unmatched [[ or ]] and everything thereafter, avoiding ]E]E etc. text = text.gsub(text, "([%[%]])%1$", "") -- remove unmatched [[ or ]] at end of text text = mw.ustring.gsub(text, "\27", "") -- unhide matched pairs: ]E]E → ]], etc. return text end -- Replace the first call to each reference defined outside of the text for the full reference, to prevent undefined references -- Then prefix the page title to the reference names to prevent conflicts -- that is, replace <ref name="Foo"> for <ref name="Title of the article Foo"> -- and also <ref name="Foo" /> for <ref name="Title of the article Foo" /> -- also remove reference groups: <ref name="Foo" group="Bar"> for <ref name="Title of the article Foo"> -- and <ref group="Bar"> for <ref> -- @todo The current regex may fail in cases with both kinds of quotes, like <ref name="Darwin's book"> local function fixRefs(text, page, full) if not full then full = getContent(page) end local refNames = {} local refName local refBody local position = 1 while position < mw.ustring.len(text) do refName, position = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>]+)[\"']?[^>]*/%s*>()", position) if refName then refName = mw.text.trim(refName) if not refNames[refName] then -- make sure we process each ref name only once table.insert(refNames, refName) refName = mw.ustring.gsub(refName, "[%^%$%(%)%.%[%]%*%+%-%?%%]", "%%%0") -- escape special characters refBody = mw.ustring.match(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>/]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if not refBody then -- the ref body is not in the excerpt refBody = mw.ustring.match(full, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^/>]*>.-<%s*/%s*[Rr][Ee][Ff]%s*>") if refBody then -- the ref body was found elsewhere text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?%s*" .. refName .. "%s*[\"']?[^>]*/?%s*>", refBody, 1) end end end else position = mw.ustring.len(text) end end text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*name%s*=%s*[\"']?([^\"'>/]+)[\"']?[^>/]*(/?)%s*>", '<ref name="' .. page .. ' %1" %2>') text = mw.ustring.gsub(text, "<%s*[Rr][Ee][Ff][^>]*group%s*=%s*[\"']?[^\"'>/]+[\"']%s*>", '<ref>') return text end -- Replace the bold title or synonym near the start of the article by a wikilink to the article function linkBold(text, page) local lang = mw.language.getContentLanguage() local position = mw.ustring.find(text, "'''" .. lang:ucfirst(page) .. "'''", 1, true) -- look for "'''Foo''' is..." (uc) or "A '''foo''' is..." (lc) or mw.ustring.find(text, "'''" .. lang:lcfirst(page) .. "'''", 1, true) -- plain search: special characters in page represent themselves if position then local length = mw.ustring.len(page) text = mw.ustring.sub(text, 1, position + 2) .. "[[" .. mw.ustring.sub(text, position + 3, position + length + 2) .. "]]" .. mw.ustring.sub(text, position + length + 3, -1) -- link it else -- look for anything unlinked in bold, assumed to be a synonym of the title (e.g. a person's birth name) text = mw.ustring.gsub(text, "()'''(.-'*)'''", function(a, b) if not mw.ustring.find(b, "%[") then -- if not wikilinked return "'''[[" .. page .. "|" .. b .. "]]'''" -- replace '''Foo''' by '''[[page|Foo]]''' else return nil -- instruct gsub to make no change end end, 1) -- "end" here terminates the anonymous replacement function(a, b) passed to gsub end return text end -- Main function for modules local function get(page, options) if options.errors then errors = options.errors end if not page or page == "" then return luaError("noPage") end local text page, section = mw.ustring.match(page, "([^#]+)#?([^#]*)") text, page = getContent(page) if not page then return luaError("noPage") end if not text then return luaError("pageNotFound", page) end local full = text -- save the full text for later if is(options.fragment) then text = getFragment(page, options.fragment) end if is(section) then text = getSection(text, section) end -- Strip text of all undersirables text = cleanupText(text, options) text = parse(text, options) -- Replace the bold title or synonym near the start of the article by a wikilink to the article text = linkBold(text, page) -- Remove '''bold text''' if requested if is(options.nobold) then text = mw.ustring.gsub(text, "'''", "") end -- Keep only tables if requested if is(options.tablesOnly) then text = getTables(text) end -- Keep only lists if requested if is(options.listsOnly) then text = getLists(text) end -- Seek and destroy unterminated templates, links and tags text = fixTemplates(text) text = fixLinks(text) text = fixTags(text, "div") -- Fix broken references if is(options.keepRefs) then text = fixRefs(text, page, full) end -- Add (Full article...) link if options.moreLinkText then text = text .. " ('''[[" .. page .. "|" .. options.moreLinkText .. "]]''')" end return text end -- Main invocation function for templates local function main(frame) local args = parseArgs(frame) local page = args[1] local ok, text = pcall(get, page, args) if not ok then text = errorMessages.prefix .. text if errorCategory and errorCategory ~= '' and mw.title.getCurrentTitle().isContentPage then text = text .. '[[' .. errorCategory .. ']]' end return mw.html.create('div'):addClass('error'):wikitext(text) end return frame:preprocess(text) end local function getMoreLinkText(more) local defaultText = "Full article..." -- default text, same as in [[Template:TFAFULL]] if not more or more == '' then -- nil/empty => use default return defaultText end if not yesno(more, true) then -- falsy values => suppress the link return nil end return more end -- Shared invocation function used by templates meant for portals local function portal(frame, template) local args = parseArgs(frame) errors = args['errors'] or false -- disable error reporting unless requested -- There should be at least one argument except with selected=Foo and Foo=Somepage if #args < 1 and not (template == "selected" and args[template] and args[args[template]]) then return wikiError("noPage") end -- Figure out the page to excerpt local page local candidates = {} if template == "lead" then page = args[1] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "selected" then local key = args[template] local count = #args if tonumber(key) then -- normalise article number into the range 1..#args key = key % count if key == 0 then key = count end end page = args[key] page = mw.text.trim(page) if not page or page == "" then return wikiError("noPage") end candidates = { page } elseif template == "linked" or template == "listitem" then local source = args[1] local text, source = getContent(source) if not source then return wikiError("noPage") elseif not text then return wikiError("noPage") end local section = args.section if section then -- check relevant section only text = getSection(text, section) if not text then return wikiError("sectionNotFound", section) end end -- Replace annotated links with real links text = mw.ustring.gsub(text, "{{%s*[Aa]nnotated[ _]link%s*|%s*(.-)%s*}}", "[[%1]]") if template == "linked" then for candidate in mw.ustring.gmatch(text, "%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end else -- listitem: first wikilink on a line beginning *, :#, etc. except in "See also" or later section text = mw.ustring.gsub(text, "\n== *See also.*", "") for candidate in mw.ustring.gmatch(text, "\n:*[%*#][^\n]-%[%[%s*([^%]|\n]*)") do table.insert(candidates, candidate) end end elseif template == "random" then for key, value in pairs(args) do if value and type(key) == "number" then table.insert(candidates, mw.text.trim(value)) end end end -- Build an options array for the Excerpt module out of the arguments and the desired defaults local options = { errors = args['errors'] or false, fileargs = args['fileargs'], fileflags = numberFlags( args['files'] ), paraflags = numberFlags( args['paragraphs'] ), moreLinkText = getMoreLinkText(args['more'] ), keepSubsections = args['keepSubsections'], keepRefs = args['keepRefs'], nobold = args['nobold'] } -- Select a random candidate and make sure its valid local text local candidateCount = #candidates if candidateCount > 0 then local candidateKey = 1 local candidateString local candidateArgs if candidateCount > 1 then math.randomseed(os.time()) end while (not text or text == "") and candidateCount > 0 do if candidateCount > 1 then candidateKey = math.random(candidateCount) end -- pick a random candidate candidateString = candidates[candidateKey] if candidateString and candidateString ~= "" then -- We have page or [[page]] or [[page|text]], possibly followed by |opt1|opt2... page, candidateArgs = mw.ustring.match(candidateString, "^%s*(%[%b[]%])%s*|?(.*)") if page and page ~= "" then page = mw.ustring.match(page, "%[%[([^|%]]*)") -- turn [[page|text]] into page, discarding text else -- we have page or page|opt... page, candidateArgs = mw.ustring.match(candidateString, "%s*([^|]*[^|%s])%s*|?(.*)") end -- candidate arguments (even if value is "") have priority over global arguments if candidateArgs and candidateArgs ~= "" then for _, t in pairs(mw.text.split(candidateArgs, "|")) do local k, v = mw.ustring.match(t, "%s*([^=]-)%s*=(.-)%s*$") if k == 'files' then options.fileflags = numberFlags(v) elseif k == 'paragraphs' then options.paraflags = numberFlags(v) elseif k == 'more' then args.more = v else options[k] = v end end end if page and page ~= "" then local section = mw.ustring.match(page, "[^#]+#([^#]+)") -- save the section text, page = getContent(page) -- make sure the page exists if page and page ~= "" and text and text ~= "" then if args.nostubs then local isStub = mw.ustring.find(text, "%s*{{[^{|}]*%-[Ss]tub%s*}}") if isStub then text = nil end end if section and section ~= "" then page = page .. '#' .. section -- restore the section end text = get(page, options) end end end table.remove(candidates, candidateKey) -- candidate processed candidateCount = candidateCount - 1 -- ensure that we exit the loop after all candidates are done end end if not text or text == "" then return wikiError("No valid pages found") end if args.showall then local separator = args.showall if separator == "" then separator = "{{clear}}{{hr}}" end for _, candidate in pairs(candidates) do local t = get(candidate, options) if t ~= "" then text = text .. separator .. t end end end -- Add a collapsed list of pages which might appear if args.list and not args.showall then local list = args.list if list == "" then list = "Other articles" end text = text .. "{{collapse top|title={{resize|85%|" ..list .. "}}|bg=fff}}{{hlist" for _, candidate in pairs(candidates) do if mw.ustring.match(candidate, "%S") then text = text .. "|[[" .. mw.text.trim(candidate) .. "]]" end end text = text .. "}}\n{{collapse bottom}}" end return frame:preprocess(text) end -- Old invocation function used by {{Excerpt}} local function excerpt(frame) local args = parseArgs(frame) -- Make sure the requested page exists local page = args[1] or args.article or args.source or args.page if not page then return wikiError("noPage") end local title = mw.title.new(page) if not title then return wikiError("noPage") end if title.isRedirect then title = title.redirectTarget end if not title.exists then return wikiError("pageNotFound", page) end page = title.prefixedText -- Define some useful variables local section = args[2] or args.section or mw.ustring.match(args[1], "[^#]+#([^#]+)") local tag = args.tag or 'div' -- Define the HTML elements local block = mw.html.create(tag):addClass('excerpt-block') if is(args.indicator) then block:addClass('excerpt-indicator') end local style = frame:extensionTag{ name = 'templatestyles', args = { src = 'Excerpt/styles.css' } } local hatnote if not args.nohat then if args.this then hatnote = args.this elseif args.indicator then hatnote = 'This is' elseif args.only == 'file' then hatnote = 'This file is' elseif args.only == 'file' then hatnote = 'These files are' elseif args.only == 'list' then hatnote = 'This list is' elseif args.only == 'lists' then hatnote = 'These lists are' elseif args.only == 'table' then hatnote = 'This table is' elseif args.only == 'tables' then hatnote = 'These tables are' else hatnote = 'This section is' end hatnote = hatnote .. ' an excerpt from ' if section then hatnote = hatnote .. '[[' .. page .. '#' .. section .. '|' .. page .. ' § ' .. section .. ']]' else hatnote = hatnote .. '[[' .. page .. ']]' end hatnote = hatnote .. "''" .. '<span class="mw-editsection-like plainlinks"><span class="mw-editsection-bracket">[</span>[' hatnote = hatnote .. title:fullUrl('action=edit') .. ' edit' hatnote = hatnote .. ']<span class="mw-editsection-bracket">]</span></span>' .. "''" hatnote = require('Module:Hatnote')._hatnote(hatnote, {selfref=true}) or wikiError('Error generating hatnote') end -- Build the module options out of the template arguments and the desired defaults local options = { fileflags = numberFlags( args['files'] or 1 ), paraflags = numberFlags( args['paragraphs'] ), filesOnly = is( args['only'] == 'file' or args['only'] == 'files' ), listsOnly = is( args['only'] == 'list' or args['only'] == 'lists'), tablesOnly = is( args['only'] == 'table' or args['only'] == 'tables' ), keepTables = is( args['tables'] or true ), keepRefs = is( args['references'] or true ), keepSubsections = is( args['subsections'] ), nobold = not is( args['bold'] ), fragment = args['fragment'] } -- Get the excerpt itself if section then page = page .. '#' .. section end local ok, excerpt = pcall(e.get, page, options) if not ok then return wikiError(excerpt) end excerpt = "\n" .. excerpt -- line break is necessary to prevent broken tables and lists if mw.title.getCurrentTitle().isContentPage then excerpt = excerpt .. '[[Category:Articles with excerpts]]' end excerpt = frame:preprocess(excerpt) excerpt = mw.html.create(tag):addClass('excerpt'):wikitext(excerpt) -- Combine and return the elements return block:node(style):node(hatnote):node(excerpt) end -- Entry points for templates function p.main(frame) return main(frame) end function p.wikiError(message, value) return wikiError(message, value) end function p.lead(frame) return portal(frame, "lead") end -- {{Transclude lead excerpt}} reads a randomly selected article linked from the given page function p.linked(frame) return portal(frame, "linked") end -- {{Transclude linked excerpt}} reads a randomly selected article linked from the given page function p.listitem(frame) return portal(frame, "listitem") end -- {{Transclude list item excerpt}} reads a randomly selected article listed on the given page function p.random(frame) return portal(frame, "random") end -- {{Transclude random excerpt}} reads any article (default for invoke with one argument) function p.selected(frame) return portal(frame, "selected") end -- {{Transclude selected excerpt}} reads the article whose key is in the selected= parameter function p.excerpt(frame) return excerpt(frame) end -- {{Excerpt}} transcludes part of an article into another article -- Entry points for other Lua modules function p.get(page, options) return get(page, options) end function p.getContent(page) return getContent(page) end function p.getSection(text, section) return getSection(text, section) end function p.getTables(text, options) return getTables(text, options) end function p.getLists(text, options) return getLists(text, options) end function p.parse(text, options) return parse(text, options) end function p.parseImage(text, start) return parseImage(text, start) end function p.parseArgs(frame) return parseArgs(frame) end function p.argImage(text) return argImage(text) end function p.checkImage(image) return checkImage(image) end function p.cleanupText(text, options) return cleanupText(text, options) end function p.luaError(message, value) return luaError(message, value) end function p.is(value) return is(value) end function p.numberFlags(str) return numberFlags(str) end function p.getMoreLinkText(more) return getMoreLinkText(more) end -- Entry points for backwards compatibility function p.getsection(text, section) return getSection(text, section) end function p.parseimage(text, start) return parseImage(text, start) end function p.checkimage(image) return checkImage(image) end function p.argimage(text) return argImage(text) end function p.numberflags(str) return numberFlags(str) end return p c8a00163e51bd202e157e61592c4b3459e59ee36 Template:Randomcar 10 1774 2626 2022-09-13T02:15:58Z S30Z 2 Created page with "{| class="wikitable" |+ Random Vehicle |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Typ..." wikitext text/x-wiki {| class="wikitable" |+ Random Vehicle |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=right | errors=1 }} |} 52a74a2b19721a9f1f7da2a705e370444318276c 2628 2626 2022-09-13T02:19:04Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ Random Vehicle [https://strigid.miraheze.org/w/index.php?title=Template:Randomcar&action=purge (Show me something else... (purge))] |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=right | errors=1 }} |} e1d40d17b1216b2317f1bd4fe58f2c169bbe47a3 2022 Bulatti Chiron Super Sport 300+ 0 436 2627 1832 2022-09-13T02:16:55Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Bulatti Chiron Super Sport 300+|image=300+ front.jpg|make=Bulatti|type=Hyper|price=$3,900,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron|rlname=2022 Bugatti Chiron Super Sport 300+|limited=1|electric=0}} The 2022 [[Bulatti]] Chiron Super Sport 300+ was a limited car sold for $3,900,000 for about 2 days. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Bulatti Chiron SS 300+ has 2 seats and a 26 gallon fuel capacity. {{Stockstats|hpval=1180|tqval=1180|whval=4361|spdval=315|drv=AWD}}{{Maxstats|hpval=2073|tqval=1296|whval=3858|spdval=315}} == Gallery == <gallery> File:300+ rear.jpg </gallery> 3cb9e5e084e89a2cbca55f521109067c98b65679 Main Page 0 1 2629 2390 2022-09-13T02:26:06Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! <div style="float:left;"> ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] </div> <div style="float:right; width: 70%"> {{Randomcar}} </div> 0e50a1cd30adcee055a4e4162ce745704735be93 Template:Randomcar 10 1774 2630 2628 2022-09-13T02:27:05Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ Random Vehicle [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge (Show me something else... (purge))] |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=right | errors=1 }} |} 996f1aad2aee4f7582a9b9d36af431e6c8f4205a 2632 2630 2022-09-13T02:31:31Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ Random Vehicle [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge (Show me something else... (purge))] |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} 16a259f7bdd5fae755e653a59693ae2045d74bc2 2633 2632 2022-09-13T02:35:20Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ Random Vehicle [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge (Show me something else... (purge))] |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 09d199652300937d205ddc4c0ea5af73094d63ed 2635 2633 2022-09-13T18:05:23Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge (Show me something else... (purge))] |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 5092fdaa6ecca470d68bcfb49352029b9b04b9a3 2636 2635 2022-09-13T18:05:45Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge (Show me something else... (purge))] |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 6fbf49b3b36d3c763988bc05486f4ae6f4e346f1 2637 2636 2022-09-13T18:07:27Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge (Show me something else... (purge))]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> ceea036d8b168f426eaa4fc0a3bc9f9c916682b7 Main Page 0 1 2631 2629 2022-09-13T02:30:33Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] {{Randomcar}} 1ee12db4cdbdbc8687882ab8b209b92d629ae070 2634 2631 2022-09-13T18:03:45Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] ===Random Vehicle=== {{Randomcar}} 5d6b1156299bfbdf204e9ef24a7086c43c1cd927 2638 2634 2022-09-13T18:36:06Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! <div style="display: flex;"> <div class="wikitable" style="float:left;"> <div style="padding-left: 15px; padding-right: 15px;"> ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] </div> </div> <div class="wikitable" style="float:right; margin-left: 5px;"> <div style="padding-left: 15px; padding-right: 15px;"> ===Random Vehicle=== {{Randomcar}} </div> </div> </div> 6feab24666bcac7d71c002b5e7e82259871bc41a 2639 2638 2022-09-13T18:38:37Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! <div style="display: flex;"> <div class="wikitable" style="float:left; min-width: 270px;"> <div style="padding-left: 15px; padding-right: 15px;"> ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] </div> </div> <div class="wikitable" style="float:right; margin-left: 5px;"> <div style="padding-left: 15px; padding-right: 15px;"> ===Random Vehicle=== {{Randomcar}} </div> </div> </div> ee793ca1f469d48ef9feb2981e704e1e6cbfc8b0 2641 2639 2022-09-13T19:21:23Z S30Z 2 wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida is a roleplay game that offers a variety of jobs, vehicles, and more! <div class="mpflex"> <div class="wikitable mptableleft"> <div class="mpttext"> ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] </div> </div> <div class="wikitable mptableright"> <div class="mpttext"> ===Random Vehicle=== {{Randomcar}} </div> </div> </div> 91a6de843fd01c2ccdb575a6fc34c7c0f85d48df MediaWiki:Common.css 8 2 2640 1898 2022-09-13T19:20:51Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .wikitable.mptableleft { float:left; min-width: 270px; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { float:right; margin-left: 5px; } 422d8bc7d4210c8e05535a6e58e7ba9177324eb3 2642 2640 2022-09-13T19:22:13Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .wikitable.mptableleft { float:left; min-width: 270px; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { float:right; margin-left: 5px; } .rctext { float: left; } 101758709e455a1c85605de7efa859d2db9e1329 2645 2642 2022-09-13T19:36:51Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .pre-content h1, .content h1, .content h2 .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .wikitable.mptableleft { float:left; min-width: 270px; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { float:right; margin-left: 5px; } .rctext { float: left; } 654f35dbf5e3afd05ef8535c7373e701e27c0926 2646 2645 2022-09-13T19:37:18Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .wikitable.mptableleft { float:left; min-width: 270px; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { float:right; margin-left: 5px; } .rctext { float: left; } b42e0c8c5740283f84e314e02a9f62abe910bae4 MediaWiki:Mobile.css 8 1775 2643 2022-09-13T19:27:22Z S30Z 2 Created page with "/* All CSS here will be loaded for users of the mobile site */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigid..." css text/css /* All CSS here will be loaded for users of the mobile site */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .mpttext { padding-left: 15px; padding-right: 15px; } d4de856dd1aacd688d8ad4d7514b417382e61c5f 2644 2643 2022-09-13T19:33:36Z S30Z 2 css text/css /* All CSS here will be loaded for users of the mobile site */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; flex-direction: column; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { margin-top: 5px; } 91fc0ace4c06f18e8f386cb450906bb8f80e17e5 2647 2644 2022-09-13T19:37:37Z S30Z 2 css text/css /* All CSS here will be loaded for users of the mobile site */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .pre-content h1, .content h1, .content h2, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; flex-direction: column; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { margin-top: 5px; } 7626ef55bd1a28713412f99371b8e19d60b7eca1 2655 2647 2022-09-14T02:32:54Z S30Z 2 css text/css /* All CSS here will be loaded for users of the mobile site */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .pre-content h1, .content h1, .content h2, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; flex-direction: column; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { margin-top: 5px; } .infobox { float: right; } 00276e65f163f9a273e2877014de2d91bf028d7f 2656 2655 2022-09-14T04:56:14Z S30Z 2 css text/css /* All CSS here will be loaded for users of the mobile site */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .pre-content h1, .content h1, .content h2, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; flex-direction: column; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { margin-top: 5px; } .infotable { float: right; } b0460da870ef5d8820e19798456b5bfdfc6726b7 2657 2656 2022-09-14T04:58:35Z S30Z 2 css text/css /* All CSS here will be loaded for users of the mobile site */ .content table, .content .infobox { float: none; } .infotable { float: right !important; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .pre-content h1, .content h1, .content h2, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; flex-direction: column; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { margin-top: 5px; } 7247877f720c0d5ba7f6591c8323fab1f647de15 2023 Chavy Corvette Z06 Z07 Package 0 1667 2648 2367 2022-09-14T00:58:42Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2023 Chavy Corvette Z06 Z07 Package|image=Z07 Front.png|make=Chavy|type=Super|price=$136,085|avail=Limited|rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C8)#Z06|rlname=Corvette C8 Z06 Z07|limited=1|electric=0}} The 2023 Chavy Corvette Z06 Z07 Package is a track focused version of the [[2023 Chavy Corvette Z06|2023 Chavy Corvette C8 Z06]], and was introduced into the game on September 10, 2022. The Z07 was available for 3 days at the cost of about $136,085. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Corvette Z06 Z07 seats 2 people and has a maximum fuel capacity of 19 gallons {{Stockstats|hpval=670|tqval=470|whval=3,441|spdval=189|drv=RWD}}{{Maxstats|hpval=1,285|tqval=1,090|whval=2,941|spdval=203}} == Gallery == [[File:Z07 Rear.png|left|thumb|Rear view of the Chavy Corvette Z06 Z07 ]] 76f9b307243a09d4075da20ebb200c8eb5d6a7e6 2022 Fard Mustang TRT Spec 5 0 1664 2649 2363 2022-09-14T01:04:24Z HPtheamazing 9 wikitext text/x-wiki {{Carinfo|name=2022 Fard Mustang TRT Spec 5|image=Spec 5 Front.png|make=Fard|type=Coupe|price=$81,475|avail=Limited|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_RTR#Mustang_RTR_Spec_5_10th_Anniversary_Edition_(2020-2021)|rlname=Ford Mustang RTR Spec 5 50th anniversary edition|limited=1|electric=0}} The 2022 Fard Mustang TRT Spec 5 was introduced into the game on September 10, 2022 and was available for a day and a half at about $81,475. As a limited vehicle, it does not occupy space in the player's inventory. == Stats == The Mustang TRT Spec 5 seats 4 people and has a maximum fuel capacity of 16 gallons. {{Stockstats|hpval=750|tqval=610|whval=3,752|spdval=197|drv=RWD}}{{Maxstats|hpval=1,291|tqval=1,028|whval=3,252|spdval=206}} == Gallery == [[File:Spec 5 Rear.png|left|thumb|Rear view of the Fard Mustang TRT Spec 5]] [[File:Spec 5 Plate.png|center|thumb|Like some limiteds, the Fard Mustang TRT Spec 5 has its own custom plate that currently isn't available on non-limited vehicles]] 5d32ee0fa5981ac19da9c23a21caec5e9c35f209 1987 Pohrse 930 Turbo Slantnose 0 1776 2650 2022-09-14T02:10:21Z Cheemsthethird 10 Created page with "{{Carinfo|name=1987 Pohrse 930 Turbo Slantnose|image=Slantnose_Front.jpg|make=Pohrse|type=Classic|price=$183,020|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Porsche_930#Flatnose_(Slantnose_930S)|rlname=Porsche 930 Turbo Slantnose|limited=1|electric=0}} The 1987 Pohrse 930 Turbo Slantnose is an iconic two door sportscar manufactured by [[Pohrse]]. It is the limited version of the [[1987 Pohrse 911 Turbo]]. As a limite..." wikitext text/x-wiki {{Carinfo|name=1987 Pohrse 930 Turbo Slantnose|image=Slantnose_Front.jpg|make=Pohrse|type=Classic|price=$183,020|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Porsche_930#Flatnose_(Slantnose_930S)|rlname=Porsche 930 Turbo Slantnose|limited=1|electric=0}} The 1987 Pohrse 930 Turbo Slantnose is an iconic two door sportscar manufactured by [[Pohrse]]. It is the limited version of the [[1987 Pohrse 911 Turbo]]. As a limited vehicle, it can no longer be purchased at the dealership. Its estimated price based on the real life counterpart is $183,020. == Stats == The Slantnose has two seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=300|tqval=303|whval=2,976|spdval=143|drv=RWD}}{{Maxstats|hpval=1,108|tqval=798|whval=2,476|spdval=185}} == Gallery == 1efd77abd857c563b01060750eb9dd6b09c41f5f 2652 2650 2022-09-14T02:11:44Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=1987 Pohrse 930 Turbo Slantnose|image=Slantnose_Front.jpg|make=Pohrse|type=Classic|price=$183,020|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Porsche_930#Flatnose_(Slantnose_930S)|rlname=Porsche 930 Turbo Slantnose|limited=1|electric=0}} The 1987 Pohrse 930 Turbo Slantnose is an iconic two door sportscar manufactured by [[Pohrse]]. It is the limited version of the [[1987 Pohrse 911 Turbo]]. As a limited vehicle, it can no longer be purchased at the dealership. Its estimated price based on the real life counterpart is $183,020. == Stats == The Slantnose has two seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=300|tqval=303|whval=2,976|spdval=143|drv=RWD}}{{Maxstats|hpval=1,108|tqval=798|whval=2,476|spdval=185}} == Gallery == [[File:Slantnose rear.jpg|left|thumb|The rear view of the 930 Turbo Slantnose. ]] 6657533c6af3719877ca28d17e556edff3688fc6 2654 2652 2022-09-14T02:18:49Z Cheemsthethird 10 /* Gallery */ wikitext text/x-wiki {{Carinfo|name=1987 Pohrse 930 Turbo Slantnose|image=Slantnose_Front.jpg|make=Pohrse|type=Classic|price=$183,020|avail=Can be purchased at the dealership for a limited time.|rllink=https://en.wikipedia.org/wiki/Porsche_930#Flatnose_(Slantnose_930S)|rlname=Porsche 930 Turbo Slantnose|limited=1|electric=0}} The 1987 Pohrse 930 Turbo Slantnose is an iconic two door sportscar manufactured by [[Pohrse]]. It is the limited version of the [[1987 Pohrse 911 Turbo]]. As a limited vehicle, it can no longer be purchased at the dealership. Its estimated price based on the real life counterpart is $183,020. == Stats == The Slantnose has two seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=300|tqval=303|whval=2,976|spdval=143|drv=RWD}}{{Maxstats|hpval=1,108|tqval=798|whval=2,476|spdval=185}} == Gallery == [[File:Slantnose rear.jpg|left|thumb|The rear view of the 930 Turbo Slantnose. ]] [[File:Slantnose Popups.jpg|thumb|The 930 Turbo Slantnose with its popup headlights on. ]] 7033961bf82a803861205d79cbcc933243976aa6 File:Slantnose rear.jpg 6 1777 2651 2022-09-14T02:10:59Z Cheemsthethird 10 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Slantnose Popups.jpg 6 1365 2653 1814 2022-09-14T02:17:36Z Cheemsthethird 10 Cheemsthethird uploaded a new version of [[File:Slantnose Popups.jpg]] wikitext text/x-wiki == Summary == photo by Aid a903727c9e8ae9f20bd17ff90caa9c207b093f50 Tuning 0 1685 2658 2392 2022-09-14T05:19:10Z S30Z 2 /* Performance */ wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. 1f51201ba318ae90191ccb5f56dc08663619574d 2659 2658 2022-09-14T06:49:52Z S30Z 2 wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. ''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. 1dbacd02f64eccfa93903353a96a85c7157e69d3 2660 2659 2022-09-14T06:59:39Z S30Z 2 /* Steering */ wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. 0201794e8db339c59a2812dc722f5d400405954b 2661 2660 2022-09-14T07:01:05Z S30Z 2 wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. e917260529f80d31d1db79fbbc3243d358b770f5 2662 2661 2022-09-14T07:03:55Z S30Z 2 wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. === Differential === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. 672fe5495e2b5e915ba46ce066a1a8a36e3382cf 2663 2662 2022-09-14T07:53:10Z S30Z 2 wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. === Differential === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. == Wheels == Wheels has 13 tabs: === Stock === Your vehicle's stock wheels. === Super === <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> faf9064a89a622799951e5d2bce056e14ebf42b9 File:Superwheel1.jpg 6 1778 2664 2022-09-14T07:53:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel2.jpg 6 1779 2665 2022-09-14T07:53:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel3.jpg 6 1780 2666 2022-09-14T07:53:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel4.jpg 6 1781 2667 2022-09-14T07:53:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel5.jpg 6 1782 2668 2022-09-14T07:53:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel6.jpg 6 1783 2669 2022-09-14T07:53:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel7.jpg 6 1784 2670 2022-09-14T07:54:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel8.jpg 6 1785 2671 2022-09-14T07:54:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel9.jpg 6 1786 2672 2022-09-14T07:54:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel10.jpg 6 1787 2673 2022-09-14T07:54:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel11.jpg 6 1788 2674 2022-09-14T07:54:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Superwheel12.jpg 6 1789 2675 2022-09-14T07:54:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 StudRac Employee 0 300 2676 2101 2022-09-14T07:58:49Z S30Z 2 /* Items that can be purchased at CVC Pharmacy */ wikitext text/x-wiki {{Jobinfo5 |desc=The StudRac Employee job requires staying inside StudRac 1 in order to make money and level up. StudRac employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Assist shoppers with their shopping needs *Manage the sales of goods |rank1=Stocker |rank1pay=$250 |rank2=Clerk |rank2pay=$375 |rank3=Supervisor |rank3pay=$625 |rank4=Manager |rank4pay=$1025 |rank5=Franchise Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' There are a total of 3 StudRac locations across Southwest Florida. Studrac 1 is the only location that can be worked at and robbed by criminals. <gallery> File:Studrac1.jpg|Studrac 1, located between the [[RW Bank Employee#Location|RW Bank]] and the [[Unemployed]] spawn. File:Studrac1int.jpg|Studrac 1 File:Studrac2.jpg|Studrac 2, located near [[Vorzen Employee#Location|Vorzen]]. File:Studrac3.jpg|Studrac 3, located near [[McBloxxer's Employee#Location|McBloxxer's]]. </gallery> == Items that can be purchased at StudRac == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} 7d7c5305b437e6035e82c6fd39039f8629faf70b File:Truckwheel1.jpg 6 1790 2677 2022-09-14T23:49:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel2.jpg 6 1791 2678 2022-09-14T23:49:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel3.jpg 6 1792 2679 2022-09-14T23:49:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel4.jpg 6 1793 2680 2022-09-14T23:49:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel5.jpg 6 1794 2681 2022-09-14T23:49:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel6.jpg 6 1795 2682 2022-09-14T23:50:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel7.jpg 6 1796 2683 2022-09-14T23:50:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel8.jpg 6 1797 2684 2022-09-14T23:50:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Help Wanted 0 1399 2685 2388 2022-09-14T23:51:32Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1982 AMC Delorean 2016 Pohrse 911 R f9e6acb0998a822d2de56a3c69ad18a4f19ebb93 2700 2685 2022-09-15T00:45:54Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1982 AMC Delorean 2016 Pohrse 911 R 85885bd10f25c9e121fe64b2168b7cfeb553add5 File:Truckwheel9.jpg 6 1798 2686 2022-09-14T23:51:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel10.jpg 6 1799 2687 2022-09-14T23:51:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel11.jpg 6 1800 2688 2022-09-14T23:52:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Truckwheel12.jpg 6 1801 2689 2022-09-14T23:52:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Tuning 0 1685 2690 2663 2022-09-14T23:52:27Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. === Differential === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. == Wheels == Wheels has 13 tabs: === Stock === Your vehicle's stock wheels. === Super === <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> === Truck === <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> bdefe23b7f5c2745a48356fd970f445c7e7a23c9 2708 2690 2022-09-15T08:53:47Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. === Differential === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. == Wheels == Wheels has 13 tabs: === Stock === Your vehicle's stock wheels. === Super === <div class="toccolours mw-collapsible" overflow:auto;"> <div style="font-weight:bold;line-height:1.6;">Super wheels</div> <div class="mw-collapsible-content"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div></div> === Truck === <div class="toccolours mw-collapsible" overflow:auto;"> <div style="font-weight:bold;line-height:1.6;">Truck wheels</div> <div class="mw-collapsible-content"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div></div> bfc82fb45a0df5e151b73e71761965c438467ef2 2709 2708 2022-09-15T09:00:59Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players and modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. === Differential === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. === Wheels === Wheels has 13 tabs: === Stock === Your vehicle's stock wheels. === Super === <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> === Truck === <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> b0587a7bf930e06a5cc3ff1ba521c7af2613fe4d 2711 2709 2022-09-15T22:58:21Z S30Z 2 wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use a HSL color picker to create a custom paint color for your vehicle. === Reflectance === Change the reflectance of your vehicle's paint. == Performance == ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: === Engine === Select from 3 stages. The higher the stage, the more power your vehicle's engine will make. === Forced Induction === Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. === Brakes === Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. === Weight === Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. === Tires === Install drift or grip tires. === Transmission === Select from 3 stages. Each stage reduces shift time. === Suspension === If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. === Wheel Width === Adjust the width of the front and rear wheels. === Drivetrain === Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. === Differential === Adjust the differential settings below. On a AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. === Steering === Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. === Gearing === Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. === Wheels === Wheels has 13 tabs: === Stock === Your vehicle's stock wheels. === Super === <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> === Truck === <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> b2736f0c3c0645f22fd0ab50fa694749053134b3 2712 2711 2022-09-15T23:03:37Z S30Z 2 wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Wheels=== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> cbc9fce3be8addf84eccdc8959ded1f60baaaa0a 2713 2712 2022-09-16T04:42:52Z S30Z 2 wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> fe69f7834b50fa2a7b2162222021792c54517e31 2726 2713 2022-09-18T05:51:04Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,7732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> 8fb7522f6243ba2fa7cc4dd9aa5e34c31022db09 Easter Eggs 0 1233 2691 1890 2022-09-15T00:26:50Z S30Z 2 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> b8f7f081b9f827edb3cf9a9a6175bdc94bb1527d 2704 2691 2022-09-15T03:19:39Z S30Z 2 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> 0099acc86096246492a1771a0cb92778baf23f1e Contributing 0 888 2692 1206 2022-09-15T00:35:41Z S30Z 2 /* Consider donating to the Strigid Wiki Team */ wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase a item under the Store tab. 558df7bca8198c6655f420b3da2424e3607d73a7 2693 2692 2022-09-15T00:37:19Z S30Z 2 /* Consider donating to the Strigid Wiki Team */ wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase a item under the Store tab. After donating, you will be featured in [[Donators]]. 8f03c55b1993105e2b0a3a957a118ca12a05ad42 2695 2693 2022-09-15T00:39:18Z S30Z 2 /* Consider donating to the Strigid Wiki Team */ wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase an item under the Store tab. After donating, you will be featured in [[Donators]]. bcee549061b260dc6cd7fcbf09a4bd4dfad17f9f 2698 2695 2022-09-15T00:44:05Z S30Z 2 /* Is there anything the wiki needs help with? */ wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. Anyone who provides something we request in Help Wanted will be featured in [[Thanks]]. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase an item under the Store tab. After donating, you will be featured in [[Donators]]. ab4ac6050d6fb2acff813fc5f5c4a463085fdec5 2699 2698 2022-09-15T00:44:17Z S30Z 2 /* Consider donating to the Strigid Wiki Team */ wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. Anyone who provides something we request in Help Wanted will be featured in [[Thanks]]. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase an item under the Store tab. After donating, you will be featured in [[Thanks]]. 00c5295ae45d35aad8781129d1f7e8f1d3ab67f0 2707 2699 2022-09-15T03:22:51Z S30Z 2 /* Consider donating to Miraheze */ wikitext text/x-wiki This page is a work in progress. How to contribute to the Southwest Florida Roblox Wiki. == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. Anyone who provides something we request in Help Wanted will be featured in [[Thanks]]. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads and are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase an item under the Store tab. After donating, you will be featured in [[Thanks]]. 3137b8f51b73b97e8f796db7d190718cc495c20f Thanks 0 1802 2694 2022-09-15T00:38:45Z S30Z 2 Created page with "Readers who have donated to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]." wikitext text/x-wiki Readers who have donated to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. 827f84b6fe328bd5c3e85cd5543868b082a7ef0c 2696 2694 2022-09-15T00:42:51Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in Help Wanted will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. == Donators == Readers who have donated to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. 3e27f24cb656a3ce7e637a375b2394d155da7298 2697 2696 2022-09-15T00:43:03Z S30Z 2 S30Z moved page [[Donators]] to [[Thanks]] without leaving a redirect wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in Help Wanted will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. == Donators == Readers who have donated to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. 3e27f24cb656a3ce7e637a375b2394d155da7298 2701 2697 2022-09-15T00:49:18Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in Help Wanted will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | Example || Something |} == Donators == Readers who have donated to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Amount Donated |- | Example || Like 3 Robux |} a243f524e17347cd61ce6af775890f2011433dad 2705 2701 2022-09-15T03:20:31Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in Help Wanted will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | Example || Something |} == Donators == Readers who have donated to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Robux Donated |- | Example || 3 |} 025b781cc7a99cd0da13ccf9ede3bc8405b23f48 2706 2705 2022-09-15T03:21:33Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in [[Help Wanted]] will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | Example || Something |} == Donators == Readers who have [[Contributing#Consider_donating_to_the_Strigid_Wiki_Team|donated]] to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Robux Donated |- | Example || 3 |} a61ee6735af7013ab904f4b31cd941110ad0795d Team 0 1404 2702 1876 2022-09-15T00:52:22Z S30Z 2 wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. Our preferred contact method is Discord. You can find us in the Strigid server, BSRP, OSFR, and possibly more. === Bureaucrat === [https://www.roblox.com/users/42859191/profile S30Z] === Admin === [https://www.roblox.com/users/222011371/profile Hank] [https://www.roblox.com/users/683778028/profile Typical] === Editor === [https://www.roblox.com/users/53974304/profile Aid] [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] 2515e3d40db31434cc2d2654de71c7121bcee507 File:Jerma.jpg 6 1803 2703 2022-09-15T03:18:12Z S30Z 2 photo by hp wikitext text/x-wiki == Summary == photo by hp 89e0243884764f708ec7a88fc70aa2c7604080db Main Page 0 1 2710 2641 2022-09-15T22:57:15Z S30Z 2 /* Welcome to the Official Southwest Florida Roblox Wiki! */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida offers a variety of jobs, vehicles, and more! <div class="mpflex"> <div class="wikitable mptableleft"> <div class="mpttext"> ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] </div> </div> <div class="wikitable mptableright"> <div class="mpttext"> ===Random Vehicle=== {{Randomcar}} </div> </div> </div> 13b495106e66a5ec264d5b9c23e0a01ed8c3d572 File:SUVwheel1.jpg 6 1804 2714 2022-09-16T05:31:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel2.jpg 6 1805 2715 2022-09-16T05:32:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel3.jpg 6 1806 2716 2022-09-16T05:32:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel4.jpg 6 1807 2717 2022-09-16T05:32:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel5.jpg 6 1808 2718 2022-09-16T05:33:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel6.jpg 6 1809 2719 2022-09-16T05:33:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel7.jpg 6 1810 2720 2022-09-16T05:33:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel8.jpg 6 1811 2721 2022-09-16T05:34:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel9.jpg 6 1812 2722 2022-09-16T05:34:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel10.jpg 6 1813 2723 2022-09-16T05:34:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel11.jpg 6 1814 2724 2022-09-16T05:34:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SUVwheel12.jpg 6 1815 2725 2022-09-16T05:35:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel2.jpg 6 1816 2727 2022-09-18T06:02:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel12.jpg 6 1817 2728 2022-09-18T06:02:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel10.jpg 6 1818 2729 2022-09-18T06:06:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel11.jpg 6 1819 2730 2022-09-18T06:07:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel9.jpg 6 1820 2731 2022-09-18T06:07:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel8.jpg 6 1821 2732 2022-09-18T06:07:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel7.jpg 6 1822 2733 2022-09-18T06:07:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel6.jpg 6 1823 2734 2022-09-18T06:07:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel5.jpg 6 1824 2735 2022-09-18T06:08:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel4.jpg 6 1825 2736 2022-09-18T06:08:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel3.jpg 6 1826 2737 2022-09-18T06:08:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Offroadwheel1.jpg 6 1827 2738 2022-09-18T06:08:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Tuning 0 1685 2739 2726 2022-09-18T06:24:21Z S30Z 2 /* Offroad */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> 8c8ef1f90e6f389a00a7a9781dce399bd50e8928 2740 2739 2022-09-18T06:45:22Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ab8f1643bb5bc80ddb734553c3281e6a4c30398a 2745 2740 2022-09-18T07:33:28Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> [[#top|Go to top of page]] 7097b4fcac25439119cff776e0a94589070825dd 2756 2745 2022-09-18T07:40:28Z S30Z 2 /* Performance */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> [[#top|Go to top of page]] 654491b53534f76c77bf6592899163fc9468c132 2761 2756 2022-09-19T03:45:08Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> [[#top|Go to top of page]] 93d58d4c0c0405acd8a550cdd980106539634b69 2762 2761 2022-09-19T05:56:01Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> [[#top|Go to top of page]] 33878164e22ba45b8d4200ebd10deab8b70b2f7a 2793 2762 2022-09-21T00:30:17Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ef1f42be4002cadea40acf7fff9fc86afc32e355 2794 2793 2022-09-21T00:43:54Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> [[#top|Go to top of page]] 4cdfc0e53628f58a2cd57d8f6bd6b65a74ce0ed2 2795 2794 2022-09-21T00:48:29Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] b656e102a356cea1b548a74ce95de3e78bec72e7 2796 2795 2022-09-21T01:04:58Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> [[#top|Go to top of page]] 133d8d2b966a8b01e163e471ebfa0b8a41c87d21 2797 2796 2022-09-21T01:10:31Z S30Z 2 /* Wheels */ wikitext text/x-wiki Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] 4b353f025d82fa4c35469218f7e1225f62815a27 Template:Randomcar 10 1774 2741 2637 2022-09-18T06:52:07Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 8138ad6ea9da5605a0fc40a81981d3f0f428b838 Dealership Employee 0 293 2757 2046 2022-09-18T07:42:12Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Dealership Employee job requires staying inside Sparrow Motorsports in order to make money and level up. |resp= *Help citizens purchase their next vehicle |rank1=Sales Associate |rank1pay=$250 |rank2=Sales Consultant |rank2pay=$375 |rank3=Sales Manager |rank3pay=$625 |rank4=Finance Manager |rank4pay=$1025 |rank5=General Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' ''Players can modify vehicles here. See [[Tuning]] for more information.'' <gallery> File:Dealer1.jpg File:Dealer2.jpg File:Dealer3.jpg File:Dealer4.jpg </gallery> 7df51fcfaea2bc1f7e97ac82c52496432f7a333a Sunset Performance 0 321 2758 2111 2022-09-18T07:42:23Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Sunset Performance job requires staying inside Sunset Performance in order to make money and level up. |resp= *Help customers modify and tune their vehicles |rank1=Shop Intern |rank1pay=$250 |rank2=Technician |rank2pay=$375 |rank3=Master Technician |rank3pay=$625 |rank4=Shop Manager |rank4pay=$1025 |rank5=Shop Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' ''Players can modify vehicles here. See [[Tuning]] for more information.'' Sunset Performance is located near the [[RW Bank Employee#Location|RW Bank]] and the [[Firefighter#Location|fire station]]. <gallery> File:Sunset1.jpg File:Sunset2.jpg </gallery> 65950bbbca55840e825f4c80997c3d73956054f0 Sussy's Mechanic Shop 0 323 2759 2150 2022-09-18T07:42:39Z S30Z 2 /* Location */ wikitext text/x-wiki {{Jobinfo5 |desc=The Sussy's Mechanic Shop job requires staying inside Sussy's Mechanic Shop in order to make money and level up. |resp= *Perform oil changes, alignments and more |rank1=Shop Intern |rank1pay=$250 |rank2=Technician |rank2pay=$375 |rank3=Master Technician |rank3pay=$625 |rank4=Shop Manager |rank4pay=$1025 |rank5=Shop Owner |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' ''Players can modify vehicles here. See [[Tuning]] for more information.'' Sussy's Mechanic Shop is located near [[Automart Employee#Location|Automart]]. <gallery> File:Sussy1.jpg File:Sussy2.jpg </gallery> 389ce7c7b0c19eb4f580b88bd9941f9c95c1f4a7 Houses 0 1570 2760 2282 2022-09-18T07:57:32Z S30Z 2 /* Mansions */ wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. After claiming a lot, a house icon will be added to the left side of the screen. This icon opens a menu with three options: '''Unclaim:''' Unclaim your lot. '''Sell:''' Sell your house type. '''Manage:''' Add/remove house owners and change your house's interior color. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Mansions == There are a total of 4 mansion lots in Southwest Florida. The mansion lots are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion house type can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, pool, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> [[Category:Locations]] 7838b354bc693dc18107160eb9b1700891601453 File:VIPwheel1.jpg 6 1841 2763 2022-09-19T22:52:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel2.jpg 6 1842 2764 2022-09-19T22:52:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel3.jpg 6 1843 2765 2022-09-19T22:52:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel4.jpg 6 1844 2766 2022-09-19T22:53:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel5.jpg 6 1845 2767 2022-09-19T22:53:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel6.jpg 6 1846 2768 2022-09-19T22:53:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel7.jpg 6 1847 2769 2022-09-19T22:53:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel8.jpg 6 1848 2770 2022-09-19T22:53:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel9.jpg 6 1849 2771 2022-09-19T22:54:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel10.jpg 6 1850 2772 2022-09-19T22:54:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel11.jpg 6 1851 2773 2022-09-19T22:54:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel12.jpg 6 1852 2774 2022-09-19T22:54:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel14.jpg 6 1871 2798 2022-09-21T01:25:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel13.jpg 6 1872 2799 2022-09-21T01:25:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel12.jpg 6 1873 2800 2022-09-21T01:25:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel11.jpg 6 1874 2801 2022-09-21T01:25:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel10.jpg 6 1875 2802 2022-09-21T01:25:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel9.jpg 6 1876 2803 2022-09-21T01:25:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel8.jpg 6 1877 2804 2022-09-21T01:25:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel7.jpg 6 1878 2805 2022-09-21T01:26:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel6.jpg 6 1879 2806 2022-09-21T01:26:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel5.jpg 6 1880 2807 2022-09-21T01:26:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel4.jpg 6 1881 2808 2022-09-21T01:26:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel3.jpg 6 1882 2809 2022-09-21T01:26:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel2.jpg 6 1883 2810 2022-09-21T01:26:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Trackwheel1.jpg 6 1884 2811 2022-09-21T01:26:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel12.jpg 6 1885 2812 2022-09-22T05:32:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel15.jpg 6 1886 2813 2022-09-22T05:32:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel14.jpg 6 1887 2814 2022-09-22T05:32:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel13.jpg 6 1888 2815 2022-09-22T05:32:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel11.jpg 6 1889 2816 2022-09-22T05:33:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel10.jpg 6 1890 2817 2022-09-22T05:33:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel9.jpg 6 1891 2818 2022-09-22T05:33:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel8.jpg 6 1892 2819 2022-09-22T05:33:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel7.jpg 6 1893 2820 2022-09-22T05:33:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel6.jpg 6 1894 2821 2022-09-22T05:34:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel5.jpg 6 1895 2822 2022-09-22T05:34:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel4.jpg 6 1896 2823 2022-09-22T05:34:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel3.jpg 6 1897 2824 2022-09-22T05:34:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel2.jpg 6 1898 2825 2022-09-22T05:34:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel1.jpg 6 1899 2826 2022-09-22T05:35:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel13.jpg 6 1900 2827 2022-09-22T06:00:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel12.jpg 6 1901 2828 2022-09-22T06:01:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel11.jpg 6 1902 2829 2022-09-22T06:01:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel10.jpg 6 1903 2830 2022-09-22T06:01:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel9.jpg 6 1904 2831 2022-09-22T06:02:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel8.jpg 6 1905 2832 2022-09-22T06:02:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel7.jpg 6 1906 2833 2022-09-22T06:02:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel6.jpg 6 1907 2834 2022-09-22T06:02:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel5.jpg 6 1908 2835 2022-09-22T06:02:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel4.jpg 6 1909 2836 2022-09-22T06:03:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel3.jpg 6 1910 2837 2022-09-22T06:03:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel2.jpg 6 1911 2838 2022-09-22T06:03:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Rallywheel1.jpg 6 1912 2839 2022-09-22T06:03:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel12.jpg 6 1913 2840 2022-09-22T07:05:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel11.jpg 6 1914 2841 2022-09-22T07:05:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel10.jpg 6 1915 2842 2022-09-22T07:05:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel9.jpg 6 1916 2843 2022-09-22T07:05:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel8.jpg 6 1917 2844 2022-09-22T07:05:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel7.jpg 6 1918 2845 2022-09-22T07:05:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel6.jpg 6 1919 2846 2022-09-22T07:06:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel5.jpg 6 1920 2847 2022-09-22T07:06:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel4.jpg 6 1921 2848 2022-09-22T07:06:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel3.jpg 6 1922 2849 2022-09-22T07:06:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel2.jpg 6 1923 2850 2022-09-22T07:06:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Eurowheel1.jpg 6 1924 2851 2022-09-22T07:06:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRTwheel4.jpg 6 1925 2852 2022-09-22T07:11:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRTwheel3.jpg 6 1926 2853 2022-09-22T07:11:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRTwheel2.jpg 6 1927 2854 2022-09-22T07:11:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TRTwheel1.jpg 6 1928 2855 2022-09-22T07:11:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Help Wanted 0 1399 2856 2700 2022-09-22T07:14:33Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars the wiki is currently missing, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" 2013 Muaraci-Bens SLS AGM Black Series 1982 AMC Delorean 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' cabecd71e500382d8d8041631318f5d83373d7d5 2013 Muaraci-Bens SLS AGM Black Series 0 1929 2857 2022-09-22T09:08:51Z Newtypicalphantoms 11 Created blank page wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2858 2857 2022-09-22T09:23:03Z Newtypicalphantoms 11 page wikitext text/x-wiki {{Carinfo|name=2019 Muaraci-Bens SLS AGM Black Series|image=SLS_Black_Series_Front.jpeg|make=Muaraci-Bens|type=Super|price=$726,153|avail=Limited|rllink=https://nl.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} 67d3a2090783aff6cabb220c618a3c861146e253 2859 2858 2022-09-23T00:53:10Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2019 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=$726,153|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} 05f31ec367085f40e280cdbf4cbd13e2f59a9dad 2860 2859 2022-09-23T00:56:14Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} 09762c4e27fca39000928739f89b3225b5d71758 2013 Muaraci-Bens SLS AGM Black Series 0 1929 2861 2860 2022-09-23T00:56:26Z S30Z 2 S30Z moved page [[2019 Muaraci-Bens SLS AGM Black Series]] to [[2013 Muaraci-Bens SLS AGM Black Series]] wikitext text/x-wiki {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} 09762c4e27fca39000928739f89b3225b5d71758 2863 2861 2022-09-23T01:00:15Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} The 2013 Muaraci-Bens SLS AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on October 8, 2021. It was available for 48 hours. ==Stats== ''Please [[Team|contact us]] if you have the correct information.'' {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} e759dfe703310bf9444c94d4b05c978632900df4 2864 2863 2022-09-23T01:00:39Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} The 2013 Muaraci-Bens SLS AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on October 8, 2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== ''Please [[Team|contact us]] if you have the correct information.'' {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} d165de417ae7cb1b6e4e84fa2b094e6b3bfb3522 2896 2864 2022-10-28T07:20:44Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} The 2013 Muaraci-Bens SLS AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on October 8, 2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== ''Please [[Team|contact us]] if you have the correct information.'' {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 6d575117963c4ed946a74bda4461ddb1b7ba2385 2019 Muaraci-Bens SLS AGM Black Series 0 1930 2862 2022-09-23T00:56:26Z S30Z 2 S30Z moved page [[2019 Muaraci-Bens SLS AGM Black Series]] to [[2013 Muaraci-Bens SLS AGM Black Series]] wikitext text/x-wiki #REDIRECT [[2013 Muaraci-Bens SLS AGM Black Series]] 01cc937f9e38f72498a189ac0931cbc8b14bdcad Help Wanted 0 1399 2865 2856 2022-09-23T01:01:50Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] 1982 AMC Delorean 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' 8d446e6480d26fcb0ce1b7bff3b2daba081bb4eb 2867 2865 2022-09-23T01:07:03Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] 1982 AMC Delorean 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. 8e2a571e0392482b0207c48f5d0c8a1fa083fb5a 2868 2867 2022-09-23T01:07:22Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] 1982 AMC Delorean 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. 9c5d03ed8836c183a984cd89ac2257d3b0d0c05d Template:Randomcar 10 1774 2866 2741 2022-09-23T01:03:47Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 |332= 2013 Muaraci-Bens SLS AGM Black Series | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 72790164040b95b843820e5a597ce70a29dc81ed Lamburghina 0 482 2869 729 2022-09-29T23:31:32Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Lamburghina|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lamborghini|rlname=Automobili Lamborghini S.p.A}} Lamburghina is a fictional Italian luxury sports-cars manufacture in Southwest Florida. It is based on [https://www.lamborghini.com/en-en Lamborghini]. == Vehicles by Lamburghina == You can find a list of all vehicles by Lamburghina [[:Category:Lamburghina|here]]. == Removal == On 9/29/2022, all Lamburghina vehicles were removed from the game due to copyright issues. No further information is available at this time. 57a85ef7f4ec9671f4b5b65062cf76bc66a1c9ba 2022 Lamburghina Countach 0 455 2870 1857 2022-09-29T23:34:28Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=New Countach Front.jpg|make=Lamburghina|type=Super|price=$2,640,000|avail=Removed|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made by [[Lamburghina]] which was sold as a limited for $2,640,000. It has since been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}} == Gallery == [[File:New Countach Rear.jpg|left|thumb]] <gallery> </gallery> 3bf9a8721e42abbc7e9e0400ba01ec980c5728b4 2871 2870 2022-09-29T23:35:09Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2022 Lamburghina Countach|image=New Countach Front.jpg|make=Lamburghina|type=Super|price=$2,640,000|avail=Removed|rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach_LPI_800-4|rlname=Lamborghini Countach LPI 800-4|limited=1|electric=0}} The 2022 Lamburghina Countach is a super car made by [[Lamburghina]] which was sold as a limited for $2,640,000. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' == Stats == The 2022 Countach has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=803|tqval=557|whval=3552|spdval=229|drv=AWD}}{{Maxstats|hpval=1568|tqval=1241|whval=2972|spdval=230}} == Gallery == [[File:New Countach Rear.jpg|left|thumb]] <gallery> </gallery> 274428f20c8a3ae2ed34d50041552abc44b8d1e9 2020 Lamburghina Urus 0 1286 2872 1693 2022-09-29T23:36:07Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Lamburghina Urus |image=Urus_Front.jpg |make=Lamburghina |type=SUV |price=$218,009 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Urus |rlname=Lamborghini Urus |limited=0 |electric=0 }} The 2020 Lamburghina Urus was a four door SUV produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Urus has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=641|tqval=568|whval=4843|spdval=182|drv=AWD}} {{Maxstats|hpval=1331|tqval=1571|whval=4343|spdval=210}} ==Gallery== <gallery> File:Urus_Rear.jpg|Rear view of the 2020 Lamburghina Urus. </gallery> c5951b4679185db29077d61c73109f196494408e 2020 Lamburghina Huracan STO 0 461 2873 1836 2022-09-29T23:36:41Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Lamburghina Huracan STO|image=Sto front.jpg|make=Lamburghina|type=Super|price=$327,838|avail=Removed|rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n|rlname=Lamborghini Huracan STO|limited=1|electric=0}} The 2020 Lamburghina Huracan STO was a limited vehicle made by [[Lamburghina]] that sold for $327,838. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' == Stats == The STO has 2 seats and a fuel capacity of 20.9 gallons. {{Stockstats|hpval=630|tqval=473|whval=3172|spdval=208|drv=RWD}}{{Maxstats|hpval=1336|tqval=1284|whval=2672|spdval=208}} == Gallery == <gallery> File:Sto rear.jpg </gallery> 0637191ec08303fc857920f491f01ec55ff64ab8 2020 Lamburghina Huracan EVO Spyder 0 846 2874 1153 2022-09-29T23:37:11Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Lamburghina Huracan EVO Spyder |image=HuracanEVOS_Front.jpg |make=Lamburghina |type=Super |price=$319,995 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_Evo_(2019%E2%80%93present) |rlname=Lamborghini Huracan Evo Spyder |limited=0 |electric=0 }} The 2020 Lamburghina Huracan EVO Spyder was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Huracan EVO Spyder has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=571|tqval=413|whval=3327|spdval=199|drv=RWD}} {{Maxstats|hpval=1297|tqval=1311|whval=2827|spdval=211}} ==Gallery== <gallery> File:HuracanEVOS_Rear.jpg|Rear view of the 2020 Lamburghina Huracan EVO Spyder. File:HuracanEVOS_Int.jpg|Interior shot of the 2020 Lamburghina Huracan EVO Spyder. </gallery> b640cd559cd440e1378ac0ce732aedda84d4cb2c 2020 Lamburghina Huracan EVO 0 840 2875 1147 2022-09-29T23:38:40Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Lamburghina Huracan EVO |image=HuracanEVO_Front.jpg |make=Lamburghina |type=Super |price=$309,995 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_Evo_(2019%E2%80%93present) |rlname=Lamborghini Huracan Evo |limited=0 |electric=0 }} The 2020 Lamburghina Huracan EVO was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Huracan EVO has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=571|tqval=413|whval=3135|spdval=199|drv=RWD}} {{Maxstats|hpval=1297|tqval=1311|whval=2547|spdval=211}} ==Gallery== <gallery> File:HuracanEVO_Rear.jpg|Rear view of the 2020 Lamburghina Huracan EVO. </gallery> cab95ba4b43fcfb705c810bbc22075ce75ca0438 2019 Lamburghina Aventador SVJ 0 753 2876 1048 2022-09-29T23:38:58Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Lamburghina Aventador SVJ |image=AventadorSVJ_Front.jpg |make=Lamburghina |type=Super |price=$699,570 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Aventador |rlname=Lamborghini Aventador |limited=0 |electric=0 }} The 2019 Lamburghina Aventador SVJ was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Aventador SVJ has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=759|tqval=530|whval=3362|spdval=204|drv=AWD}} {{Maxstats|hpval=1509|tqval=1198|whval=2862|spdval=234}} ==Gallery== <gallery> File:AventadorSVJ_Rear.jpg|Rear view of the 2019 Lamburghina Aventador SVJ. </gallery> cc68c1f35a72d3e3681337f1c3462b7d7e99b55d 2018 Lamburghina Huracan Performante 0 843 2877 1150 2022-09-29T23:39:38Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2018 Lamburghina Huracan Performante |image=HuracanPerformante_Front.jpg |make=Lamburghina |type=Super |price=$264,300 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Hurac%C3%A1n#Hurac%C3%A1n_LP_640-4_Performante_(2017%E2%80%932019) |rlname=Lamborghini Huracán LP 640-4 Performante |limited=0 |electric=0 }} The 2018 Lamburghina Huracan Performante was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Huracan Performante has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=630|tqval=473|whval=3047|spdval=201|drv=AWD}} {{Maxstats|hpval=1336|tqval=1284|whval=2547|spdval=208}} ==Gallery== <gallery> File:HuracanPerformante_Rear.jpg|Rear view of the 2018 Lamburghina Huracan Performante. </gallery> c74f1a83dc3d1682059bbf9756e2b23b3fdfe335 2011 Lamburghina Gallardo Superleggera 0 838 2878 1145 2022-09-29T23:40:22Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Lamburghina Gallardo Superleggera |image=Superleggera_Front.jpg |make=Lamburghina |type=Super |price=$214,950 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Gallardo#Lamborghini_Gallardo_LP_570-4_Superleggera_(2010%E2%80%932013) |rlname=Lamborghini Gallardo LP 570-4 Superleggera |limited=0 |electric=0 }} The 2011 Lamburghina Gallardo Superleggera was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Gallardo Superleggera has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=562|tqval=398|whval=3153|spdval=201|drv=AWD}} {{Maxstats|hpval=1258|tqval=868|whval=2653|spdval=238}} ==Gallery== <gallery> File:Superleggera_Rear.jpg|Rear view of the 2011 Lamburghina Gallardo Superleggera. </gallery> 5dbff28c9fdbb0c8a67a9fe96ecde26782bb814d 2011 Lamburghina Aventador 0 750 2879 1045 2022-09-29T23:41:35Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Lamburghina Aventador |image=Aventador_Front.jpg |make=Lamburghina |type=Super |price=$298,870 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Aventador |rlname=Lamborghini Aventador |limited=0 |electric=0 }} The 2011 Lamburghina Aventador is a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Aventador has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=690|tqval=502|whval=3472|spdval=206|drv=AWD}} {{Maxstats|hpval=1417|tqval=1156|whval=2972|spdval=228}} ==Gallery== <gallery> File:Aventador_Rear.jpg|Rear view of the 2011 Lamburghina Aventador. File:Aventador_Engine.jpg|Engine shot of the 2011 Lamburghina Aventador. </gallery> 5da2bb43325f445face7e7417e8b438e0ace533e 2010 Lamburghina Murcielago SV 0 845 2880 1152 2022-09-29T23:41:46Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2010 Lamburghina Murcielago SV |image=MurcielagoSV_Front.jpg |make=Lamburghina |type=Super |price=$313,550 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Murci%C3%A9lago |rlname=Lamborghini Murciélago LP 670–4 SV |limited=0 |electric=0 }} The 2010 Lamburghina Murcielago SV is a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Murcielago SV has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=661|tqval=487|whval=3450|spdval=201|drv=AWD}} {{Maxstats|hpval=1267|tqval=841|whval=3171|spdval=206}} ==Gallery== <gallery> File:MurcielagoSV_Rear.jpg|Rear view of the 2010 Lamburghina Murcielago SV. </gallery> 4b7052919c4324ce01cb2dcb8e0e438cb5698d37 2009 Lamburghina Reventon Roadster 0 452 2881 1835 2022-09-29T23:42:34Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Lamburghina Reventon Roadster|image=Revention front.jpg|make=Lamburghina|type=Super|price=$1,400,000|avail=Removed|rllink=https://en.wikipedia.org/wiki/Lamborghini_Revent%C3%B3n|rlname=Lamborghini Reventon Roadster|limited=1|electric=0}} The 2009 Lamburghina Reventon Roadster was a super car built by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats == The Reventon Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=661|tqval=486|whval=3726|spdval=214|drv=AWD}} {{Maxstats|hpval=1377|tqval=889|whval=3226|spdval=214}} == Gallery == <gallery> File:Revention rear.jpg|The rear view of the Reventon. File:Revention interior.jpg|Interior shot of the Reventon. </gallery> 454cbb37235682e96f83d3c799ef1dc528f51de1 2008 Lamburghina Gallardo 0 847 2882 1154 2022-09-29T23:42:54Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2008 Lamburghina Gallardo |image=Gallardo_Front.jpg |make=Lamburghina |type=Super |price=$143,500 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Gallardo |rlname=Lamborghini Gallardo (1st gen) |limited=0 |electric=0 }} The 2008 Lamburghina Gallardo was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Gallardo has 2 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=511|tqval=384|whval=3153|spdval=195|drv=AWD}} {{Maxstats|hpval=1208|tqval=833|whval=2653|spdval=229}} ==Gallery== <gallery> File:Gallardo_Rear.jpg|Rear view of the 2008 Lamburghina Gallardo. </gallery> 72a09de35732baedc4692666e3406109725c1371 2003 Lamburghina Murcielago Roadster 0 841 2883 1148 2022-09-29T23:43:13Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2003 Lamburghina Murcielago Roadster |image=MurcielagoR_Front.jpg |make=Lamburghina |type=Super |price=$249,995 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Murci%C3%A9lago#Murci%C3%A9lago_Roadster_(2004%E2%80%932006) |rlname=Lamborghini Murciélago Roadster |limited=0 |electric=0 }} The 2003 Lamburghina Murcielago Roadster is a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Murcielago Roadster has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=571|tqval=479|whval=3671|spdval=204|drv=AWD}} {{Maxstats|hpval=1267|tqval=841|whval=3171|spdval=206}} ==Gallery== <gallery> File:MurcielagoR_Rear.jpg|Rear view of the 2003 Lamburghina Murcielago Roadster. File:MurcielagoR_Int.jpg|Interior shot of the 2003 Lamburghina Murcielago Roadster. </gallery> 37de6ddfdbfa6c3b362d7c2c20e5bdaf347e1796 1986 Lamburghina Countach 5000 QV 0 577 2884 849 2022-09-29T23:43:42Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1986 Lamburghina Countach 5000 QV |image=Countach_Front.jpg |make=Lamburghina |type=Classic |price=$860,000 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach |rlname=Lamborghini Countach |limited=0 |electric=0 }} The 1986 Lamburghina Countach 5000 QV is a two door coupe produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Countach has 2 seats and a fuel capacity of 29 gallons. {{Stockstats|hpval=420|tqval=341|whval=3285|spdval=182|drv=RWD}} {{Maxstats|hpval=1385|tqval=924|whval=2785|spdval=194}} ==Gallery== <gallery> File:Countach_Rear.jpg|Rear view of the 1986 Lamburghina Countach 5000 QV. </gallery> dcb125f2917fab34770be60bafc99459615c00df 2886 2884 2022-09-30T00:55:42Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1986 Lamburghina Countach 5000 QV |image=Countach_Front.jpg |make=Lamburghina |type=Classic |price=$860,000 |avail=Removed |rllink=https://en.wikipedia.org/wiki/Lamborghini_Countach |rlname=Lamborghini Countach |limited=0 |electric=0 }} The 1986 Lamburghina Countach 5000 QV was a supercar produced by [[Lamburghina]]. It has been removed from the game. == Removal == ''See [[Lamburghina#Removal]].'' ==Stats== The Countach has 2 seats and a fuel capacity of 29 gallons. {{Stockstats|hpval=420|tqval=341|whval=3285|spdval=182|drv=RWD}} {{Maxstats|hpval=1385|tqval=924|whval=2785|spdval=194}} ==Gallery== <gallery> File:Countach_Rear.jpg|Rear view of the 1986 Lamburghina Countach 5000 QV. </gallery> f9871fde78a5efa2526428b93a73db54bc2a1b79 Contributing 0 888 2885 2707 2022-09-29T23:48:19Z S30Z 2 wikitext text/x-wiki == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. Anyone who provides something we request in Help Wanted will be featured in [[Thanks]]. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads and are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Wikimedia Foundation == The nonprofit Wikimedia Foundation hosts Wikipedia as well as many other vital community projects, and develops MediaWiki, the powerful, highly extensible and open source software that powers this wiki, and many, many others (such as [https://community.fandom.com/wiki/Special:Version Fandom]). This wiki and many others would not exist today if not for them. You can learn more [https://wikimediafoundation.org/ here.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase an item under the Store tab. After donating, you will be featured in [[Thanks]]. 35a7b9a35ec3746cba9a83f563941e38ef5ab859 Team 0 1404 2887 2702 2022-10-14T23:32:55Z S30Z 2 wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. Our preferred contact method is Discord. You can find us in the Strigid server, BSRP, OSFR, and possibly more. === Bureaucrat === [https://www.roblox.com/users/42859191/profile S30Z] === Admin === [https://www.roblox.com/users/222011371/profile Hank] === Editor === [https://www.roblox.com/users/53974304/profile Aid] [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] 45e47da1e0f2de309fd76bf403e4d788840d635e Easter Eggs 0 1233 2888 2704 2022-10-17T04:38:39Z S30Z 2 /* The Backroom */ wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. Near Halloween of 2022, Raft18 escaped from the backrooms. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> aa6b753b8c8b60aaba7199b5fc44bf751bf3deac Template:Carinfo 10 25 2889 2559 2022-10-27T22:09:27Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} {{#ifexpr:{{{bodykit}}} | [[Category:Vehicles with bodykits|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true }, "bodykit": { "label": "Does this vehicle have bodykits? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "description": "Bodykit status", "type": "boolean", "autovalue": "0", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> d1e12b842a6801d7f4c08eec669a57c2f14b647b 2890 2889 2022-10-27T22:10:22Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} {{#ifexpr:{{{bodykit}}} | [[Category:Vehicles with bodykits|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true }, "bodykit": { "label": "Does this vehicle have bodykits? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "description": "Bodykit status", "type": "boolean", "autovalue": "0", "suggested": true } }, "description": "Car information box" } </templatedata> </noinclude> 182a7204b9d29c3d99b82335c8a1de07308e196f 2891 2890 2022-10-27T22:11:54Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> [[Category:Vehicles|{{{make}}}]] [[Category:{{{type}}}|{{{make}}}]] [[Category:{{{make}}}|{{{make}}}]] {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 1e93680562d315cfee18b1774c0ea1ea0759ee81 Template:Bodykits 10 1931 2892 2022-10-27T22:16:02Z S30Z 2 Created page with "==Bodykits== <includeonly> [[Category:Vehicles with bodykits|{{{make}}}]] </includeonly>" wikitext text/x-wiki ==Bodykits== <includeonly> [[Category:Vehicles with bodykits|{{{make}}}]] </includeonly> 72889dadda844d99ed59e7d065bde315539fed7e Category:Vehicles with bodykits 14 1932 2893 2022-10-27T22:17:00Z S30Z 2 Created page with "All vehicles with bodykits in Southwest Florida." wikitext text/x-wiki All vehicles with bodykits in Southwest Florida. 4d5df0848bce750d704b12ab7884a899a3388b0a File:Nh.png 6 1933 2894 2022-10-28T07:01:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Template:Needshelp 10 1934 2895 2022-10-28T07:18:06Z S30Z 2 Created page with "<p style="background-color:#d1e1ec; padding: 10px; border: 1px solid #6497b1;">[[File:Nh.png|24px]] &nbsp; This article is incomplete and/or missing information. See [[Help Wanted]] for more info.</p>" wikitext text/x-wiki <p style="background-color:#d1e1ec; padding: 10px; border: 1px solid #6497b1;">[[File:Nh.png|24px]] &nbsp; This article is incomplete and/or missing information. See [[Help Wanted]] for more info.</p> 16e48cc832b8ac1fc43e4704cc6fd75cc2bd0fb9 Tuning 0 1685 2897 2797 2022-10-28T07:21:13Z S30Z 2 wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] 5263b0ab12a66cfd0aa3904f8fcb57806d232d7b Community Service Aide 0 322 2898 2133 2022-10-28T07:21:19Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Jobinfo3 |desc= This job requires the Law Enforcement+ gamepass. The Community Service Aide job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a CSA no matter where the player is. CSAs are equipped with traffic cones and a taser. See [[Weapons]] for more info. |resp= *Maintain peace in the community, help with minor traffic incidents |rank1=Community Service Aide I |rank1pay=$240 |rank2=Community Service Aide II |rank2pay=N/A |rank3=Community Service Officer |rank3pay=N/A}} == Location == CSAs spawn at the [[Police#Location|police station]]. == Gallery == <gallery> File:CSAUni1.jpg File:CSAUni2.jpg </gallery> 32d11fa011e393ba00620abce681d3218b87140a Template:Makeinfo 10 28 2899 1866 2022-10-28T07:23:24Z S30Z 2 wikitext text/x-wiki {| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> {{#ifeq: {{{makeimage}}} | Placeholder_Logo.png | [[Category:Car companies with no logo]] {{Needshelp}} | }} [[Category:Car Companies]] </includeonly> <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage": { "label": "Company logo image", "example": "Mazday_Logo.png", "required": true }, "rllink": { "label": "Real-life counterpart Wikipedia link", "example": "https://en.wikipedia.org/wiki/Mazda", "required": true }, "rlname": { "label": "Real-life counterpart name", "example": "Mazda", "required": true } }, "description": "Car company info box" } </templatedata> </noinclude> 33e676c38abebe2f8f4acfe4c2b64c7164fd1251 2900 2899 2022-10-29T21:23:55Z S30Z 2 wikitext text/x-wiki <includeonly> {{#ifeq: {{{makeimage}}} | Placeholder_Logo.png | [[Category:Car companies with no logo]] {{Needshelp}} | }} [[Category:Car Companies]] </includeonly> {| class="infotable" ! colspan="2" | {{{subj|{{{makename}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{makeimage}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{makename}}} logo}}}</small> |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <noinclude> <templatedata> { "params": { "makename": { "label": "Company name", "example": "Mazday", "type": "string", "required": true }, "makeimage": { "label": "Company logo image", "example": "Mazday_Logo.png", "required": true }, "rllink": { "label": "Real-life counterpart Wikipedia link", "example": "https://en.wikipedia.org/wiki/Mazda", "required": true }, "rlname": { "label": "Real-life counterpart name", "example": "Mazda", "required": true } }, "description": "Car company info box" } </templatedata> </noinclude> 96180814063f9b28da3f98418580e4987583d7ca 2021 Fard Mustang GT500 Code Red 0 1935 2901 2022-10-31T22:47:37Z S30Z 2 Created page with " {{Carinfo |name=2021 Fard Mustang GT500 Code Red |image=CodeRed_Front.jpg |make=Fard |type=Coupe |price=Free |avail=Reward for finishing the Halloween 2022 event |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation)#Shelby_GT500_Code_Red_(2022) |rlname=Ford Mustang Shelby GT500 Code Red |limited=0 |electric=0 }} The 2021 Fard Mustang GT500 Code Red is a two door coupe produced by [[Fard]]. It was given to players after completing the Halloween 2022 even..." wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT500 Code Red |image=CodeRed_Front.jpg |make=Fard |type=Coupe |price=Free |avail=Reward for finishing the Halloween 2022 event |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation)#Shelby_GT500_Code_Red_(2022) |rlname=Ford Mustang Shelby GT500 Code Red |limited=0 |electric=0 }} The 2021 Fard Mustang GT500 Code Red is a two door coupe produced by [[Fard]]. It was given to players after completing the Halloween 2022 event. ==Stats== The Mustang GT500 Code Red has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=1300|tqval=1127|whval=4153|spdval=213|drv=RWD}} {{Maxstats|hpval=1951|tqval=1498|whval=3682|spdval=235}} ==Gallery== <gallery> File:CodeRed_Rear.jpg|Rear view of the 2021 Fard Mustang GT500 Code Red. </gallery> d811987ab9a88eaeb26c2ba2db5c6263bec9737c File:CodeRed Rear.jpg 6 1936 2902 2022-10-31T22:51:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CodeRed Front.jpg 6 1937 2903 2022-10-31T22:53:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2009 Naan 350Z 0 650 2904 1012 2022-10-31T23:07:23Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z|image=350z_front.jpg|make=Naan|type=Coupe|price=$28,510|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z|rlname=Nissan 350Z (Z33)|limited=0|electric=0}} The 2009 Naan 350Z is a two-seater sportscar produced by [[Naan]]. It can be purchased at the dealership for $28,510. == Stats == The 350z has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,369|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,869|spdval=212}} {{Bodykits}} <gallery> File:350Z_CW_Front.jpg|C-South N1 (C-West N1) File:350Z_CW_Rear.jpg|C-South N1 (C-West N1) File:350Z_RB_Front.jpg|Rocket Booster V2 (Rocket Bunny) File:350Z_RB_Rear.jpg|Rocket Booster V2 (Rocket Bunny) File:350Z_V_Front.jpg|Vertices (Vertex) File:350Z_V_Rear.jpg|Vertices (Vertex) </gallery> == Gallery == <gallery> File:350z rear.jpg|The rear view of the 2009 Naan 350Z. </gallery> 35436d84aec9965edf2e9b12c08c4cfa8a635196 File:350Z CW Front.jpg 6 1938 2905 2022-10-31T23:09:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350Z CW Rear.jpg 6 1939 2906 2022-10-31T23:10:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350Z RB Front.jpg 6 1940 2907 2022-10-31T23:10:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350Z RB Rear.jpg 6 1941 2908 2022-10-31T23:10:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350Z V Front.jpg 6 1942 2909 2022-10-31T23:11:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:350Z V Rear.jpg 6 1943 2910 2022-10-31T23:11:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Tuning 0 1685 2911 2897 2022-10-31T23:12:54Z S30Z 2 /* Performance */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] ed93c2478d7022c36bc64649cc9341511f9b0624 2912 2911 2022-10-31T23:14:16Z S30Z 2 /* Performance */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$2,299 File:VIPwheel2.jpg|$3,528 - Work Emitz File:VIPwheel3.jpg|$1,600 File:VIPwheel4.jpg|$876 File:VIPwheel5.jpg|$1,470 File:VIPwheel6.jpg|$1,900 File:VIPwheel7.jpg|$2,880 File:VIPwheel8.jpg|$2,604 File:VIPwheel9.jpg|$3,060 File:VIPwheel10.jpg|$3,167 File:VIPwheel11.jpg|$1,360 File:VIPwheel12.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] f36ab1f8a1675675470192e162b0e0bde68a2bcd 2002 Mazday RX-7 Sprint-R 0 1174 2913 1512 2022-10-31T23:30:58Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2002 Mazday RX-7 Sprint-R |image=FD3S_Front.jpg |make=Mazday |type=Coupe |price=$65,475 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-7#Third_generation_(FD3S) |rlname=Mazda RX-7 Spirit R (FD3S) |limited=0 |electric=0 }} The 2002 Mazday RX-7 Sprint-R is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $65,475. ==Stats== The RX-7 Sprint-R has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=280|tqval=231|whval=2778|spdval=162|drv=RWD}} {{Maxstats|hpval=1188|tqval=949|whval=2278|spdval=185}} {{Bodykits}} <gallery> File:FD3S_BN_Front.jpg|DN Sport Defender (BN Sports Defend Blister) File:FD3S_BN_Rear.jpg|DN Sport Defender (BN Sports Defend Blister) File:FD3S_RB_Front.jpg|Rabbit Booster V1 (Rocket Bunny) File:FD3S_RB_Rear.jpg|Rabbit Booster V1 (Rocket Bunny) File:FD3S_RE_Front.jpg|RE Isami D1 (RE Amemiya D1) File:FD3S_RE_Rear.jpg|RE Isami D1 (RE Amemiya D1) </gallery> ==Gallery== <gallery> File:FD3S_Rear.jpg|Rear view of the 2002 Mazday RX-7 Sprint-R. </gallery> 5597178731a58908e4bdfcb23437dcc0f997c0bd File:FD3S BN Front.jpg 6 1944 2914 2022-10-31T23:31:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S BN Rear.jpg 6 1945 2915 2022-10-31T23:31:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S RB Front.jpg 6 1946 2916 2022-10-31T23:32:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S RB Rear.jpg 6 1947 2917 2022-10-31T23:32:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S RE Front.jpg 6 1948 2918 2022-10-31T23:32:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:FD3S RE Rear.jpg 6 1949 2919 2022-10-31T23:32:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Toyoto GT86 0 152 2920 305 2022-10-31T23:37:27Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Toyoto GT86 |image=GT86_Front.jpg |make=Toyoto |type=Coupe |price=$26,655 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Toyota_86#First_generation_(ZN6/ZC6;_2012) |rlname=Toyota 86 |limited=0 |electric=0 }} The 2019 Toyoto GT86 is a two door coupe produced by [[Toyoto]]. It can be purchased from the dealership for $26,655. ==Stats== The GT86 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=204|tqval=192|whval=2776|spdval=135|drv=RWD}} {{Maxstats|hpval=1049|tqval=1141|whval=2258|spdval=163}} {{Bodykits}} <gallery> File:GT86_CS_Front.jpg|Momentum Type 2 (ChargeSpeed Type 2) File:GT86_CS_Rear.jpg|Momentum Type 2 (ChargeSpeed Type 2) File:GT86_MD_Front.jpg|Stylista (Modellista) File:GT86_MD_Rear.jpg|Stylista (Modellista) File:GT86_RB_Front.jpg|Rabbit Booster V2 (Rocket Bunny) File:GT86_RB_Rear.jpg|Rabbit Booster V2 (Rocket Bunny) </gallery> ==Gallery== <gallery> File:GT86_Rear.jpg|Rear view of the 2019 Toyoto GT86. </gallery> 5d766f044db57b32d65d370c6e8ce41deb17f225 File:GT86 CS Front.jpg 6 1950 2921 2022-10-31T23:40:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT86 CS Rear.jpg 6 1951 2922 2022-10-31T23:40:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT86 MD Front.jpg 6 1952 2923 2022-10-31T23:40:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT86 MD Rear.jpg 6 1953 2924 2022-10-31T23:40:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT86 RB Front.jpg 6 1954 2925 2022-10-31T23:40:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GT86 RB Rear.jpg 6 1955 2926 2022-10-31T23:40:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2013 Cadillic CTS-V Coupe 0 1956 2927 2022-10-31T23:54:46Z S30Z 2 Created page with " {{Carinfo |name=2013 Cadillic CTS-V Coupe |image=CTSVCoupe_Front.jpg |make=Cadillic |type=Coupe |price=$47,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Cadillac CTS-V Coupe |limited=0 |electric=0 }} The 2013 Cadillic CTS-V Coupe is a two door coupe produced by [[Cadillic]]. It can be purchased from the dealership for $47,900. ==Stats== The CTS-V Coupe has 5 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=2013 Cadillic CTS-V Coupe |image=CTSVCoupe_Front.jpg |make=Cadillic |type=Coupe |price=$47,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Cadillac CTS-V Coupe |limited=0 |electric=0 }} The 2013 Cadillic CTS-V Coupe is a two door coupe produced by [[Cadillic]]. It can be purchased from the dealership for $47,900. ==Stats== The CTS-V Coupe has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=556|tqval=551|whval=4217|spdval=191|drv=RWD}} {{Maxstats|hpval=1190|tqval=993|whval=3717|spdval=217}} ==Gallery== <gallery> File:CTSVCoupe_Rear.jpg|Rear view of the 2013 Cadillic CTS-V Coupe. </gallery> 9c0a2468cd88fe0cc847a021a43bd7129330eda7 File:CTSVCoupe Front.jpg 6 1957 2928 2022-10-31T23:55:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CTSVCoupe Rear.jpg 6 1958 2929 2022-10-31T23:55:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2013 Cadillic CTS-V 0 1959 2930 2022-11-01T00:19:37Z S30Z 2 Created page with " {{Carinfo |name=2013 Cadillic CTS-V |image=CTSV_Front.jpg |make=Cadillic |type=Sedan |price=$43,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Cadillac CTS-V (2nd gen.) |limited=0 |electric=0 }} The 2013 Cadillic CTS-V is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $43,990. ==Stats== The CTS-V Coupe has 5 seats and a fuel capacity of 18 gall..." wikitext text/x-wiki {{Carinfo |name=2013 Cadillic CTS-V |image=CTSV_Front.jpg |make=Cadillic |type=Sedan |price=$43,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Cadillac CTS-V (2nd gen.) |limited=0 |electric=0 }} The 2013 Cadillic CTS-V is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $43,990. ==Stats== The CTS-V Coupe has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=556|tqval=551|whval=4222|spdval=191|drv=RWD}} {{Maxstats|hpval=1190|tqval=993|whval=3722|spdval=217}} ==Gallery== <gallery> File:CTSV_Rear.jpg|Rear view of the 2013 Cadillic CTS-V. </gallery> 4a5d7f508f450e42a91b9c3d188c26a1efed874c File:CTSV Front.jpg 6 1960 2931 2022-11-01T00:21:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CTSV Rear.jpg 6 1961 2932 2022-11-01T00:21:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2013 Cadillic CTS-V Wagon 0 1962 2933 2022-11-01T00:30:34Z S30Z 2 Created page with " {{Carinfo |name=2013 Cadillic CTS-V Wagon |image=CTSVWagon_Front.jpg |make=Cadillic |type=Sedan |price=$57,683 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Cadillac CTS-V Wagon |limited=0 |electric=0 }} The 2013 Cadillic CTS-V is a four door station wagon produced by [[Cadillic]]. It can be purchased from the dealership for $57,683. ==Stats== The CTS-V Wagon has 5 seats and a fuel capac..." wikitext text/x-wiki {{Carinfo |name=2013 Cadillic CTS-V Wagon |image=CTSVWagon_Front.jpg |make=Cadillic |type=Sedan |price=$57,683 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Cadillac CTS-V Wagon |limited=0 |electric=0 }} The 2013 Cadillic CTS-V is a four door station wagon produced by [[Cadillic]]. It can be purchased from the dealership for $57,683. ==Stats== The CTS-V Wagon has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=556|tqval=551|whval=4396|spdval=190|drv=RWD}} {{Maxstats|hpval=1190|tqval=993|whval=3896|spdval=217}} ==Gallery== <gallery> File:CTSVWagon_Rear.jpg|Rear view of the 2013 Cadillic CTS-V Wagon. </gallery> 7d588e4dc0ca982586a0c88a622fad385ce7f7ec File:CTSVWagon Rear.jpg 6 1963 2934 2022-11-01T00:31:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CTSVWagon Front.jpg 6 1964 2935 2022-11-01T00:31:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2008 Naan Altima 0 1965 2936 2022-11-01T00:40:11Z S30Z 2 Created page with " {{Carinfo |name=2008 Naan Altima |image=Altima_Front.jpg |make=Naan |type=Sedan |price=$10,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Nissan Altima |limited=0 |electric=0 }} The 2008 Naan Altima is a four door sedan produced by [Naan]]. It can be purchased from the dealership for $10,995. ==Stats== The Altima has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=270|t..." wikitext text/x-wiki {{Carinfo |name=2008 Naan Altima |image=Altima_Front.jpg |make=Naan |type=Sedan |price=$10,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2009%E2%80%932014) |rlname=Nissan Altima |limited=0 |electric=0 }} The 2008 Naan Altima is a four door sedan produced by [Naan]]. It can be purchased from the dealership for $10,995. ==Stats== The Altima has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=270|tqval=258|whval=3189|spdval=148|drv=FWD}} {{Maxstats|hpval=1164|tqval=1170|whval=2689|spdval=190}} ==Gallery== <gallery> File:Altima_Rear.jpg|Rear view of the 2008 Naan Altima. </gallery> 526a6c8b35d8e7379b79e7641d9cfcd25fe74a8f 2937 2936 2022-11-01T00:42:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2008 Naan Altima |image=Altima_Front.jpg |make=Naan |type=Sedan |price=$10,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Altima#Fourth_generation_(L32;_2007) |rlname=Nissan Altima (4th gen.) |limited=0 |electric=0 }} The 2008 Naan Altima is a four door sedan produced by [Naan]]. It can be purchased from the dealership for $10,995. ==Stats== The Altima has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=270|tqval=258|whval=3189|spdval=148|drv=FWD}} {{Maxstats|hpval=1164|tqval=1170|whval=2689|spdval=190}} ==Gallery== <gallery> File:Altima_Rear.jpg|Rear view of the 2008 Naan Altima. </gallery> 7388119e2a00299680a2c9f2d34b27c87728da61 2943 2937 2022-11-01T01:05:12Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2008 Naan Altima |image=Altima_Front.jpg |make=Naan |type=Sedan |price=$10,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Altima#Fourth_generation_(L32;_2007) |rlname=Nissan Altima (4th gen.) |limited=0 |electric=0 }} The 2008 Naan Altima is a four door sedan produced by [[Naan]]. It can be purchased from the dealership for $10,995. ==Stats== The Altima has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=270|tqval=258|whval=3189|spdval=148|drv=FWD}} {{Maxstats|hpval=1164|tqval=1170|whval=2689|spdval=190}} ==Gallery== <gallery> File:Altima_Rear.jpg|Rear view of the 2008 Naan Altima. </gallery> f801885ba54ac807a72abc26930933ea362aae34 File:Altima Rear.jpg 6 1966 2938 2022-11-01T00:43:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Altima Front.jpg 6 1967 2939 2022-11-01T00:43:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2015 Pohrse 918 Weissach Package 0 1968 2940 2022-11-01T00:56:49Z S30Z 2 Created page with "{{Carinfo |name=2015 Pohrse 918 Weissach Package |image=918W_Front.jpg |make=Pohrse |type=Hyper |price=$1,930,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Porsche_918_Spyder#Weissach_Package |rlname=Porsche 918 Spyder Weissach Package |limited=1 |electric=0 }} The 2015 Pohrse 918 Weissach Package is a hypercar produced by [[Pohrse]]. It was added on Halloween of 2022 and could be purchased from the dealership for $1,930,000 for 24 hours. As a limited vehicle..." wikitext text/x-wiki {{Carinfo |name=2015 Pohrse 918 Weissach Package |image=918W_Front.jpg |make=Pohrse |type=Hyper |price=$1,930,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Porsche_918_Spyder#Weissach_Package |rlname=Porsche 918 Spyder Weissach Package |limited=1 |electric=0 }} The 2015 Pohrse 918 Weissach Package is a hypercar produced by [[Pohrse]]. It was added on Halloween of 2022 and could be purchased from the dealership for $1,930,000 for 24 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The 2015 Pohrse 918 Weissach Package has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=887|tqval=944|whval=3602|spdval=206|drv=AWD}} {{Maxstats|hpval=1503|tqval=907|whval=3102|spdval=223}} ==Gallery== <gallery> File:918W_Rear.jpg|Rear view of the 2015 Pohrse 918 Weissach Package. </gallery> 7d57890dc0dd3cec13afa7cc4f01e96579205e8f File:918W Rear.jpg 6 1969 2941 2022-11-01T00:57:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:918W Front.jpg 6 1970 2942 2022-11-01T00:57:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 McFaren 570GT 0 1971 2944 2022-11-01T02:43:02Z S30Z 2 Created page with "{{Carinfo |name=2017 McFaren 570GT |image=570GT_Front.jpg |make=McFaren |type=Super |price=$170,935 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_570S#570GT |rlname=McLaren 570GT |limited=0 |electric=0 }} The 2017 McFaren 570GT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $170,935. ==Stats== The 570GT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=562|tqval=443|whval=29..." wikitext text/x-wiki {{Carinfo |name=2017 McFaren 570GT |image=570GT_Front.jpg |make=McFaren |type=Super |price=$170,935 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_570S#570GT |rlname=McLaren 570GT |limited=0 |electric=0 }} The 2017 McFaren 570GT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $170,935. ==Stats== The 570GT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=562|tqval=443|whval=2976|spdval=205|drv=RWD}} {{Maxstats|hpval=1200|tqval=1003|whval=2476|spdval=232}} ==Gallery== <gallery> File:570GT_Rear.jpg|Rear view of the 2017 McFaren 570GT. </gallery> 7b9d693513a959a42e2eeb520f593fee27fa677d 2020 McFaren 600LT 0 1972 2945 2022-11-01T02:51:10Z S30Z 2 Created page with "{{Carinfo |name=2020 McFaren 600LT |image=600LT_Front.jpg |make=McFaren |type=Super |price=$269,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_570S#600LT |rlname=McLaren 600LT |limited=0 |electric=0 }} The 2020 McFaren 600LT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $269,998. ==Stats== The 600LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=592|tqval=457|whval=29..." wikitext text/x-wiki {{Carinfo |name=2020 McFaren 600LT |image=600LT_Front.jpg |make=McFaren |type=Super |price=$269,998 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_570S#600LT |rlname=McLaren 600LT |limited=0 |electric=0 }} The 2020 McFaren 600LT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $269,998. ==Stats== The 600LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=592|tqval=457|whval=2989|spdval=204|drv=RWD}} {{Maxstats|hpval=1223|tqval=1023|whval=2489|spdval=227}} ==Gallery== <gallery> File:600LT_Rear.jpg|Rear view of the 2020 McFaren 600LT. </gallery> 681a36e631a1c378d55653c1162feda92b59f67d File:570GT Front.jpg 6 1973 2946 2022-11-01T02:58:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:600LT Front.jpg 6 1974 2947 2022-11-01T02:59:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:570GT Rear.jpg 6 1975 2948 2022-11-01T02:59:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:600LT Rear.jpg 6 1976 2949 2022-11-01T03:00:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Template:Randomcar 10 1774 2950 2866 2022-11-01T03:06:41Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 |332= 2013 Muaraci-Bens SLS AGM Black Series |333= 2021 Fard Mustang GT500 Code Red |334= 2013 Cadillic CTS-V Coupe |335= 2013 Cadillic CTS-V |336= 2013 Cadillic CTS-V Wagon |337= 2015 Pohrse 918 Weissach Package |338= 2008 Naan Altima |339= 2017 McFaren 570GT |340= 2020 McFaren 600LT | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 89819cd868cba9592fb348be8e082896fc66312c 2013 Fard Mustang GT Convertible 0 73 2951 291 2022-11-01T03:07:11Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT Convertible|image='13mustangvert_front.jpg|make=Fard|type=Coupe|price=$29,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT Convertible (S-197 II)|limited=0|electric=0}} The 2013 Fard Mustang GT Convertible is a two door coupe with a convertible top produced by [[Fard]]. It is the convertible variant of the [[2013 Fard Mustang GT]] and it can be purchased from the dealership for $29,998. {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}} {{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustangvert rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT Convertible.]] [[File:'13mustangvert topdown.jpg|center|thumb|The 2013 Fard Mustang GT Convertible with the convertible top down.]] 07231c7648e08f2b1f839d9810e927d1860e72c9 2022 McFaren 765LT 0 1977 2952 2022-11-01T19:51:04Z S30Z 2 Created page with "{{Carinfo |name=2022 McFaren 765LT |image=765LT_Front.jpg |make=McFaren |type=Super |price=$589,996 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_570S#600LT |rlname=McLaren 765LT |limited=1 |electric=0 }} The 2022 McFaren 765LT is a supercar produced by [[McFaren]]. It is a limited vehicle that was added on Halloween of 2022 and could be purchased from the dealership for $589,996 for 48 hours. As a limited vehicle, it does not t..." wikitext text/x-wiki {{Carinfo |name=2022 McFaren 765LT |image=765LT_Front.jpg |make=McFaren |type=Super |price=$589,996 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_570S#600LT |rlname=McLaren 765LT |limited=1 |electric=0 }} The 2022 McFaren 765LT is a supercar produced by [[McFaren]]. It is a limited vehicle that was added on Halloween of 2022 and could be purchased from the dealership for $589,996 for 48 hours. As a limited vehicle, it does not take space in the player's inventory. ==Stats== The 765LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=755|tqval=590|whval=2952|spdval=217|drv=RWD}} {{Maxstats|hpval=1387|tqval=1222|whval=2452|spdval=252}} ==Gallery== <gallery> File:765LT_Rear.jpg|Rear view of the 2022 McFaren 765LT. </gallery> 1ecbce8e49dfc72740e6c97d631eddf8338f068f 2955 2952 2022-11-01T21:39:34Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 McFaren 765LT |image=765LT_Front.jpg |make=McFaren |type=Super |price=$589,996 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_720S#765LT |rlname=McLaren 765LT |limited=1 |electric=0 }} The 2022 McFaren 765LT is a supercar produced by [[McFaren]]. It is a limited vehicle that was added on Halloween of 2022 and could be purchased from the dealership for $589,996 for 48 hours. As a limited vehicle, it does not take space in the player's inventory. ==Stats== The 765LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=755|tqval=590|whval=2952|spdval=217|drv=RWD}} {{Maxstats|hpval=1387|tqval=1222|whval=2452|spdval=252}} ==Gallery== <gallery> File:765LT_Rear.jpg|Rear view of the 2022 McFaren 765LT. </gallery> 2069d9c87c87c8f082162ba24a498f948cf4dc3b 2956 2955 2022-11-01T21:40:44Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 McFaren 765LT |image=765LT_Front.jpg |make=McFaren |type=Super |price=$589,996 |avail=Limited |rllink=https://en.wikipedia.org/wiki/McLaren_720S#765LT |rlname=McLaren 765LT |limited=1 |electric=0 }} The 2022 McFaren 765LT is a supercar produced by [[McFaren]]. It is a limited vehicle that was added on Halloween of 2022 and could be purchased from the dealership for $589,996 for 48 hours. As a limited vehicle, it does not take space in the player's inventory. ==Stats== The 765LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=755|tqval=590|whval=2952|spdval=217|drv=RWD}} {{Maxstats|hpval=1387|tqval=1222|whval=2452|spdval=252}} ==Gallery== <gallery> File:765LT_Rear.jpg|Rear view of the 2022 McFaren 765LT. </gallery> 8c66786027481edee236c1e7068f0ef9cb90e3e3 File:765LT Rear.jpg 6 1978 2953 2022-11-01T19:52:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:765LT Front.jpg 6 1979 2954 2022-11-01T19:53:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2016 McFaren 650S 0 1980 2957 2022-11-01T21:49:26Z S30Z 2 Created page with "{{Carinfo |name=2016 McFaren 650S |image=650S_Front.jpg |make=McFaren |type=Super |price=$151,050 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_650S |rlname=McLaren 650S |limited=0 |electric=0 }} The 2016 McFaren 650S is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $151,050. ==Stats== The 650S has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=641|tqval=500|whval=3148|spdval=2..." wikitext text/x-wiki {{Carinfo |name=2016 McFaren 650S |image=650S_Front.jpg |make=McFaren |type=Super |price=$151,050 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_650S |rlname=McLaren 650S |limited=0 |electric=0 }} The 2016 McFaren 650S is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $151,050. ==Stats== The 650S has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=641|tqval=500|whval=3148|spdval=202|drv=RWD}} {{Maxstats|hpval=1271|tqval=1050|whval=2648|spdval=222}} ==Gallery== <gallery> File:650S_Rear.jpg|Rear view of the 2016 McFaren 650S. </gallery> bc5ce073d1be8cdba448915a415663d5bcc9fc37 File:650S Front.jpg 6 1981 2958 2022-11-01T21:50:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:650S Rear.jpg 6 1982 2959 2022-11-01T21:51:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2016 McFaren 650S Spider 0 1983 2960 2022-11-01T22:02:12Z S30Z 2 Created page with "{{Carinfo |name=2016 McFaren 650S Spider |image=650SSpider_Front.jpg |make=McFaren |type=Super |price=$150,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_650S#650S_Spider_(2014%E2%80%932016) |rlname=McLaren 650S Spider |limited=0 |electric=0 }} The 2016 McFaren 650S Spider is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $150,350. ==Stats== The 650S Spider has 2 seats and a fuel capacity of..." wikitext text/x-wiki {{Carinfo |name=2016 McFaren 650S Spider |image=650SSpider_Front.jpg |make=McFaren |type=Super |price=$150,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_650S#650S_Spider_(2014%E2%80%932016) |rlname=McLaren 650S Spider |limited=0 |electric=0 }} The 2016 McFaren 650S Spider is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $150,350. ==Stats== The 650S Spider has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=641|tqval=500|whval=3236|spdval=203|drv=RWD}} {{Maxstats|hpval=1271|tqval=1050|whval=2736|spdval=222}} ==Gallery== <gallery> File:650SSpider_Rear.jpg|Rear view of the 2016 McFaren 650S Spider. File:650SSpider_Int.jpg|Interior shot of the 2016 McFaren 650S Spider. </gallery> b2cace5df0c22d5109923c5c77e6f9e10cd5d4f8 File:650SSpider Front.jpg 6 1984 2961 2022-11-01T22:03:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:650SSpider Rear.jpg 6 1985 2962 2022-11-01T22:03:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:650SSpider Int.jpg 6 1986 2963 2022-11-01T22:04:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2015 McFaren 675LT 0 1987 2964 2022-11-01T22:18:18Z S30Z 2 Created page with "{{Carinfo |name=2015 McFaren 675LT |image=675LT_Front.jpg |make=McFaren |type=Super |price=$334,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_650S#675LT |rlname=McLaren 675LT |limited=0 |electric=0 }} The 2015 McFaren 675LT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $334,800. ==Stats== The 675LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=666|tqval=516|whval=30..." wikitext text/x-wiki {{Carinfo |name=2015 McFaren 675LT |image=675LT_Front.jpg |make=McFaren |type=Super |price=$334,800 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/McLaren_650S#675LT |rlname=McLaren 675LT |limited=0 |electric=0 }} The 2015 McFaren 675LT is a supercar produced by [[McFaren]]. It can be purchased from the dealership for $334,800. ==Stats== The 675LT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=666|tqval=516|whval=3010|spdval=199|drv=RWD}} {{Maxstats|hpval=1295|tqval=1044|whval=2510|spdval=226}} ==Gallery== <gallery> File:675LT_Rear.jpg|Rear view of the 2015 McFaren 675LT. </gallery> c9c2f4e4783f8a01e4d226bec276fed6b286f3a8 File:675LT Front.jpg 6 1988 2965 2022-11-01T22:19:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:675LT Rear.jpg 6 1989 2966 2022-11-01T22:20:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2013 Fard Mustang GT Convertible 0 73 2967 2951 2022-11-01T22:42:00Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Fard Mustang GT Convertible|image='13mustangvert_front.jpg|make=Fard|type=Coupe|price=$29,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(fifth_generation)#2010_model_year_update|rlname=Ford Mustang GT Convertible (S-197 II)|limited=0|electric=0}} The 2013 Fard Mustang GT Convertible is a two door coupe with a convertible top produced by [[Fard]]. It is the convertible variant of the [[2013 Fard Mustang GT]] and it can be purchased from the dealership for $29,998. ==Stats== {{Stockstats|hpval=420|tqval=390|whval=3,618|spdval=152|drv=RWD}} {{Maxstats|hpval=1,111|tqval=1,001|whval=3,118|spdval=190}} == Gallery == [[File:'13mustangvert rear.jpg|left|thumb|The rear view of the 2013 Fard Mustang GT Convertible.]] [[File:'13mustangvert topdown.jpg|center|thumb|The 2013 Fard Mustang GT Convertible with the convertible top down.]] 895ca80fed8c36057b74a12b2e22769c954aca8d File:A6 Rear.jpg 6 627 2968 902 2022-11-02T00:10:04Z S30Z 2 S30Z uploaded a new version of [[File:A6 Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:A6 Front.jpg 6 628 2969 903 2022-11-02T00:10:14Z S30Z 2 S30Z uploaded a new version of [[File:A6 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Template:Randomcar 10 1774 2970 2950 2022-11-02T00:12:14Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 |332= 2013 Muaraci-Bens SLS AGM Black Series |333= 2021 Fard Mustang GT500 Code Red |334= 2013 Cadillic CTS-V Coupe |335= 2013 Cadillic CTS-V |336= 2013 Cadillic CTS-V Wagon |337= 2015 Pohrse 918 Weissach Package |338= 2008 Naan Altima |339= 2017 McFaren 570GT |340= 2020 McFaren 600LT |341= 2022 McFaren 765LT |342= 2016 McFaren 650S‎ |343= 2016 McFaren 650S‎ Spider |342= 2015 McFaren 675LT‎ | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 120f9374a8fdafcb85390b079a88f424b4c074b0 2971 2970 2022-11-02T00:12:34Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2020 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 |332= 2013 Muaraci-Bens SLS AGM Black Series |333= 2021 Fard Mustang GT500 Code Red |334= 2013 Cadillic CTS-V Coupe |335= 2013 Cadillic CTS-V |336= 2013 Cadillic CTS-V Wagon |337= 2015 Pohrse 918 Weissach Package |338= 2008 Naan Altima |339= 2017 McFaren 570GT |340= 2020 McFaren 600LT |341= 2022 McFaren 765LT |342= 2016 McFaren 650S‎ |343= 2016 McFaren 650S‎ Spider |344= 2015 McFaren 675LT‎ | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> c731f87ec01c04be99186fafbc3146330c6ca886 2980 2971 2022-11-02T00:23:42Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2022 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 |332= 2013 Muaraci-Bens SLS AGM Black Series |333= 2021 Fard Mustang GT500 Code Red |334= 2013 Cadillic CTS-V Coupe |335= 2013 Cadillic CTS-V |336= 2013 Cadillic CTS-V Wagon |337= 2015 Pohrse 918 Weissach Package |338= 2008 Naan Altima |339= 2017 McFaren 570GT |340= 2020 McFaren 600LT |341= 2022 McFaren 765LT |342= 2016 McFaren 650S‎ |343= 2016 McFaren 650S‎ Spider |344= 2015 McFaren 675LT‎ | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 30bdd2decca26bb4a297df8d87d0437a975d1fae 2019 Owdi A6 0 641 2972 916 2022-11-02T00:14:30Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Owdi A6 |image=A6_Front.jpg |make=Owdi |type=Sedan |price=$54,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_A6#C8_(Typ_4K,_2018%E2%80%93present) |rlname=Audi A6 (5th gen.) |limited=0 |electric=0 }} The 2019 Owdi A6 is a four door sedan produced by [[Owdi]]. It can be purchased from the dealership for $54,900. ==Stats== The A6 has 5 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=247|tqval=368|whval=4028|spdval=126|drv=AWD}} {{Maxstats|hpval=835|tqval=1039|whval=3523|spdval=230}} ==Gallery== <gallery> File:A6_Rear.jpg|Rear view of the 2019 Owdi A6. </gallery> 08bddf647baa9050a681b86db76a6920fcfacf3f File:Spur Rear.jpg 6 590 2973 862 2022-11-02T00:18:37Z S30Z 2 S30Z uploaded a new version of [[File:Spur Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Spur Front.jpg 6 589 2974 861 2022-11-02T00:19:53Z S30Z 2 S30Z uploaded a new version of [[File:Spur Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Versa Rear.jpg 6 588 2975 860 2022-11-02T00:22:17Z S30Z 2 S30Z uploaded a new version of [[File:Versa Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Versa Front.jpg 6 587 2976 859 2022-11-02T00:22:26Z S30Z 2 S30Z uploaded a new version of [[File:Versa Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Naan Versa 0 601 2977 873 2022-11-02T00:22:58Z S30Z 2 S30Z moved page [[2020 Naan Versa]] to [[2022 Naan Versa]] wikitext text/x-wiki {{Carinfo |name=2020 Naan Versa |image=Versa_Front.jpg |make=Naan |type=Sedan |price=$14,830 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Almera#N18 |rlname=Nissan Versa (3rd gen.) |limited=0 |electric=0 }} The 2020 Naan Versa is a four door sedan produced by [[Naan]]. It can be purchased from the dealership for $14,830. ==Stats== The Versa has 5 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=121|tqval=142|whval=2729|spdval=100|drv=FWD}} {{Maxstats|hpval=876|tqval=868|whval=2229|spdval=162}} ==Gallery== <gallery> File:Versa_Rear.jpg|Rear view of the 2020 Naan Versa. </gallery> 88a4d6ba23cd6e24fc6631ea489c08979a13ecce 2979 2977 2022-11-02T00:23:20Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Naan Versa |image=Versa_Front.jpg |make=Naan |type=Sedan |price=$14,830 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Almera#N18 |rlname=Nissan Versa (3rd gen.) |limited=0 |electric=0 }} The 2022 Naan Versa is a four door sedan produced by [[Naan]]. It can be purchased from the dealership for $14,830. ==Stats== The Versa has 5 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=121|tqval=142|whval=2729|spdval=100|drv=FWD}} {{Maxstats|hpval=876|tqval=868|whval=2229|spdval=162}} ==Gallery== <gallery> File:Versa_Rear.jpg|Rear view of the 2022 Naan Versa. </gallery> 3848a6b87a251290686139675a3975d34f38638f 2020 Naan Versa 0 1990 2978 2022-11-02T00:22:58Z S30Z 2 S30Z moved page [[2020 Naan Versa]] to [[2022 Naan Versa]] wikitext text/x-wiki #REDIRECT [[2022 Naan Versa]] b539fa0741d28bd61780bc2116b036bb8508ae35 File:Forester Front.jpg 6 1235 2981 1597 2022-11-02T00:26:40Z S30Z 2 S30Z uploaded a new version of [[File:Forester Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Forester Rear.jpg 6 1234 2982 1596 2022-11-02T00:26:52Z S30Z 2 S30Z uploaded a new version of [[File:Forester Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:918 Rear.jpg 6 359 2983 537 2022-11-02T00:30:01Z S30Z 2 S30Z uploaded a new version of [[File:918 Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:918 Front.jpg 6 360 2984 538 2022-11-02T00:30:10Z S30Z 2 S30Z uploaded a new version of [[File:918 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LaFurai Rear.jpg 6 363 2985 541 2022-11-02T00:34:30Z S30Z 2 S30Z uploaded a new version of [[File:LaFurai Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LaFurai Front.jpg 6 364 2986 542 2022-11-02T00:34:43Z S30Z 2 S30Z uploaded a new version of [[File:LaFurai Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:P1 Rear.jpg 6 361 2987 539 2022-11-02T00:37:35Z S30Z 2 S30Z uploaded a new version of [[File:P1 Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:P1 Front.jpg 6 362 2988 540 2022-11-02T00:37:47Z S30Z 2 S30Z uploaded a new version of [[File:P1 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Easter Eggs 0 1233 2989 2888 2022-11-02T00:45:20Z S30Z 2 /* The Backroom */ wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. Near Halloween of 2022, Raft18 escaped from the backroom. As of the Halloween 2022 update, the backroom can no longer be accessed. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> 4c52f08e5887e1860926d819860ee1fd72acb604 2990 2989 2022-11-02T00:56:51Z S30Z 2 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. Near Halloween of 2022, Raft18 escaped from the backroom. As of the Halloween 2022 update, the backroom can no longer be accessed. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == The Labyrinth == Through the newly-opened doors that previously lead to the backroom, players can enter a hidden server room with a computer and a drainage pipe as seen in the backroom. The computer's monitors show static, with an image of Raft flickering on the primary monitor. Entering the drainage pipe will bring players to the labyrinth. Raft will chase the player through the labyrinth, and if he touches the player, the player will die. Once a player finds their way out, they will be rewarded with the [[2021 Fard Mustang GT500 Code Red]]. <gallery> File:BackroomDoorOpen.jpg|Open backroom doors File:ServerRoomPc.jpg File:RaftMaze.jpg|Raft in the labyrinth File:DevNuke.jpg|CLASSIFIED OBJECT: DEV_NUKE File:LBozo.jpg|"L bozo" sign found in a dead end File:BigFarter1.jpg|big farter File:BigFarter2.jpg File:CodeRed.jpg|The [[2021 Fard Mustang GT500 Code Red|Code Red]] awaiting the player File:CodeRedGui.jpg|Message that appears after obtaining the Code Red </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> 35f40a42af816a72e1917deb64a3af8ba2012dce File:ServerRoomPc.jpg 6 1991 2991 2022-11-02T00:57:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RaftMaze.jpg 6 1992 2992 2022-11-02T00:57:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:DevNuke.jpg 6 1993 2993 2022-11-02T00:58:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:LBozo.jpg 6 1994 2994 2022-11-02T00:58:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BigFarter1.jpg 6 1995 2995 2022-11-02T00:58:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BigFarter2.jpg 6 1996 2996 2022-11-02T00:58:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CodeRed.jpg 6 1997 2997 2022-11-02T00:58:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CodeRedGui.jpg 6 1998 2998 2022-11-02T00:59:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:BackroomDoorOpen.jpg 6 1999 2999 2022-11-02T01:00:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2009 Naan 350Z 0 650 3000 2904 2022-11-03T23:11:50Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z|image=350z_front.jpg|make=Naan|type=Coupe|price=$28,510|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_350Z|rlname=Nissan 350Z (Z33)|limited=0|electric=0}} The 2009 Naan 350Z is a two-seater sportscar produced by [[Naan]]. It can be purchased at the dealership for $28,510. == Stats == The 350z has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,369|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,869|spdval=212}} {{Bodykits}} <gallery> File:350Z_CW_Front.jpg|C-South N1 (C-West N1) File:350Z_CW_Rear.jpg|C-South N1 (C-West N1) File:350Z_RB_Front.jpg|Rabbit Booster V2 (Rocket Bunny) File:350Z_RB_Rear.jpg|Rabbit Booster V2 (Rocket Bunny) File:350Z_V_Front.jpg|Vertices (Vertex) File:350Z_V_Rear.jpg|Vertices (Vertex) </gallery> == Gallery == <gallery> File:350z rear.jpg|The rear view of the 2009 Naan 350Z. </gallery> 2f041f0badf42f1fbde9a5849c886a195230e57e 2013 Muaraci-Bens SLS AGM Black Series 0 1929 3001 2896 2022-11-10T19:50:03Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} The 2013 Muaraci-Bens SLS AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on October 8, 2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} a81f70bf21f35c97e0f269c060b594b1f6e8d885 Main Page 0 1 3002 2710 2022-11-10T19:50:57Z S30Z 2 /* Quick Links */ wikitext text/x-wiki __NOTOC__ <div class="center" style="width:auto; margin-left:auto; margin-right:auto;"> [[File:Welcome.jpg|frameless|800x800px]] </div> ===Welcome to the Official Southwest Florida Roblox Wiki!=== [https://www.roblox.com/games/5104202731/Southwest-Florida-Beta Southwest Florida] is a roleplaying game created by [https://www.roblox.com/groups/6464780/Strigid Strigid.] Based around the Bonita Springs area, Southwest Florida offers a variety of jobs, vehicles, and more! <div class="mpflex"> <div class="wikitable mptableleft"> <div class="mpttext"> ===Quick Links=== [[:Category:Vehicles|Vehicles]] [[Tuning]] [[:Category:Vehicles with bodykits|Bodykits]] [[:Category:Jobs|Jobs]] [[:Category:Locations|Locations]] [[Easter Eggs]] [[Weapons]] [[Contributing|How can I contribute to the SWFL Wiki?]] [[Team|Who runs this wiki?]] </div> </div> <div class="wikitable mptableright"> <div class="mpttext"> ===Random Vehicle=== {{Randomcar}} </div> </div> </div> 05e386baa3d775664f9ee06cb7b42d5dfc558e23 1982 AMC Delorean 0 2000 3003 2022-11-10T19:55:44Z S30Z 2 Created page with "{{Needshelp}} {{Carinfo|name=1982 AMC Delorean|image=Delorean_Front.jpg|make=AMC|type=Classic|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/DMC_DeLorean|rlname=DMC DeLorean|limited=1|electric=0}} The 1982 AMC Delorean is a coupe produced by [[AMC]]. It is a limited vehicle that was added on 9/24/2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whv..." wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=1982 AMC Delorean|image=Delorean_Front.jpg|make=AMC|type=Classic|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/DMC_DeLorean|rlname=DMC DeLorean|limited=1|electric=0}} The 1982 AMC Delorean is a coupe produced by [[AMC]]. It is a limited vehicle that was added on 9/24/2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 50eed9fe50b9125f39e1d9acf7ea29d60bec63d6 3005 3003 2022-11-10T19:57:30Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=1982 AMC Delorean|image=Delorean_Front.jpg|make=AMC|type=Classic|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/DMC_DeLorean|rlname=DMC DeLorean|limited=1|electric=0}} The 1982 AMC Delorean is a coupe produced by [[AMC]]. It is a limited vehicle that was added on 9/24/2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} ==Gallery== <gallery> File:Delorean_Rear.jpg|Rear view of the 1982 AMC Delorean. </gallery> f211a8af3633e1a5cd5e3a95062498837decebdd Help Wanted 0 1399 3004 2868 2022-11-10T19:56:27Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport 2011 Atone Mira One-77 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. 53ad08eafa965a734f3f1b033ebaf5f874922cb8 3008 3004 2022-11-10T20:04:38Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief 1993 Fard Mustang SVT Cobra R 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. f36519012b249ef0d8da097e52cc2d08c46ca32b 3010 3008 2022-11-10T20:10:09Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] 2005 Naan R34 GT-R Z-Tune 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. 0cf71b669b1fc68b7d9f47fde0de1550067d88e8 Category:AMC 14 2001 3006 2022-11-10T19:58:04Z S30Z 2 Created page with "All AMC vehicles in Southwest Florida." wikitext text/x-wiki All AMC vehicles in Southwest Florida. 4f15474ea4834789635fc72dfefb7715172ccecc 2011 Atone-Mira One-77 0 2002 3007 2022-11-10T20:04:14Z S30Z 2 Created page with "{{Needshelp}} {{Carinfo|name=2011 Atone-Mira One-77|image=77_Front.jpg|make=Atone-Mira|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_One-77|rlname=Aston Martin One-77|limited=1|electric=0}} The 2011 Atone-Mira One-77 is a supercar produced by [[Atone-Mira]]. It is a limited vehicle that was added on 12/10/2021. It was available for 24 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{..." wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=2011 Atone-Mira One-77|image=77_Front.jpg|make=Atone-Mira|type=Super|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_One-77|rlname=Aston Martin One-77|limited=1|electric=0}} The 2011 Atone-Mira One-77 is a supercar produced by [[Atone-Mira]]. It is a limited vehicle that was added on 12/10/2021. It was available for 24 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} b85c87045b08444b0ed527f8b4131c30204cde3c 1993 Fard Mustang SVT Cobra R 0 2003 3009 2022-11-10T20:09:07Z S30Z 2 Created page with "{{Needshelp}} {{Carinfo |name=1993 Fard Mustang SVT Cobra R |image=93SVT Front.jpg |make=Fard |type=Classic |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(third_generation)#1987%E2%80%931993 |rlname=Ford Mustang GT (3rd gen.) |limited=1 |electric=0}} The 1993 Fard Mustang SVT Cobra R is a coupe produced by [[Fard]]. It is a limited vehicle that was added on 2/11/2022. It was available for 72 hours. As a limited vehicle, it does not occ..." wikitext text/x-wiki {{Needshelp}} {{Carinfo |name=1993 Fard Mustang SVT Cobra R |image=93SVT Front.jpg |make=Fard |type=Classic |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(third_generation)#1987%E2%80%931993 |rlname=Ford Mustang GT (3rd gen.) |limited=1 |electric=0}} The 1993 Fard Mustang SVT Cobra R is a coupe produced by [[Fard]]. It is a limited vehicle that was added on 2/11/2022. It was available for 72 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 5a9b8f1de3c8112cf50ec6e945cf6108cab3fb9d 2005 Naan R34 GT-R Z-Tune 0 2004 3011 2022-11-10T20:15:13Z S30Z 2 Created page with "{{Needshelp}} {{Carinfo |name=2005 Naan R34 GT-R Z-Tune |image=Ztune_Front.jpg |make=Naan |type=Classic |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_(BNR34) |rlname=Nissan Skyline GT-R NISMO Z-tune |limited=1 |electric=0 }} The 2005 Naan R34 GT-R Z-Tune is a two door coupe produced by [[Naan]]. It is a limited vehicle that was added on 2/11/2022. It was available for 24 hours. As a limited vehicle, it does not occupy space in t..." wikitext text/x-wiki {{Needshelp}} {{Carinfo |name=2005 Naan R34 GT-R Z-Tune |image=Ztune_Front.jpg |make=Naan |type=Classic |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_(BNR34) |rlname=Nissan Skyline GT-R NISMO Z-tune |limited=1 |electric=0 }} The 2005 Naan R34 GT-R Z-Tune is a two door coupe produced by [[Naan]]. It is a limited vehicle that was added on 2/11/2022. It was available for 24 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 4a223f25d9b21fc4ab40956aaa142d8402a6ed4f 3024 3011 2022-11-15T01:51:32Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2005 Naan R34 GT-R Z-Tune |image=Ztune_Front.jpg |make=Naan |type=Classic |price=$1,484,344 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_(BNR34) |rlname=Nissan Skyline GT-R NISMO Z-tune |limited=1 |electric=0 }} The 2005 Naan R34 GT-R Z-Tune is a two door coupe produced by [[Naan]]. It is a limited vehicle that was added on 2/11/2022. It was available for 24 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The GT-R Z-Tune has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=493|tqval=398|whval=3527|spdval=182|drv=AWD}} {{Maxstats|hpval=1198|tqval=917|whval=3027|spdval=223}} b8658becde99d4c6a00d2ad9886f14782a004afd Help Wanted 0 1399 3012 3010 2022-11-10T20:16:12Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] [[2005 Naan R34 GT-R Z-Tune]] 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 2012 LUF CTR-3 Clubsport [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. 4f82cf94e964bbd43bd3be5aa2185993601f4f23 3014 3012 2022-11-10T20:20:32Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] [[2005 Naan R34 GT-R Z-Tune]] 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. ec2800221558bd958f86651e879e14e235be8eac 3025 3014 2022-11-15T01:51:46Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" [[2013 Muaraci-Bens SLS AGM Black Series]] [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. a5c4e5836a2240215119c2a401b143c5030a6bc9 3030 3025 2022-11-15T02:31:59Z S30Z 2 /* Missing cars */ wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" [[1982 AMC Delorean]] 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. 150814e2e17ca49163dbfb48c316b923e6fc1152 2012 LUF CTR-3 Clubsport 0 2005 3013 2022-11-10T20:19:23Z S30Z 2 Created page with "{{Needshelp}} {{Carinfo |name=2012 LUF CTR-3 Clubsport |image=CTRClub_Front.jpg |make=LUF |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ruf_CTR3#CTR3_Clubsport |rlname=Ruf CTR3 Clubsport |limited=1 |electric=0 }} The 2010 LUF CTR-3 is a supercar produced by [[LUF]]. It is a limited vehicle that was added on 12/24/2021. It was available for 72 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{S..." wikitext text/x-wiki {{Needshelp}} {{Carinfo |name=2012 LUF CTR-3 Clubsport |image=CTRClub_Front.jpg |make=LUF |type=Super |price=Unknown |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ruf_CTR3#CTR3_Clubsport |rlname=Ruf CTR3 Clubsport |limited=1 |electric=0 }} The 2010 LUF CTR-3 is a supercar produced by [[LUF]]. It is a limited vehicle that was added on 12/24/2021. It was available for 72 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=???|tqval=???|whval=???|spdval=???|drv=???}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 83cff2932c708b771943bd9919bfa5342ded576c 3026 3013 2022-11-15T01:56:30Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo |name=2012 LUF CTR-3 Clubsport |image=CTRClub_Front.jpg |make=LUF |type=Super |price=$1,320,500 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ruf_CTR3#CTR3_Clubsport |rlname=Ruf CTR3 Clubsport |limited=1 |electric=0 }} The 2010 LUF CTR-3 Clubsport is a supercar produced by [[LUF]]. It is a limited vehicle that was added on 12/24/2021. It was available for 72 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The CTR-3 Clubsport has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=777|tqval=723|whval=3086|spdval=238|drv=RWD}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} ced204ad9e3b55f64c3205d9476028f5527416c2 Template:Randomcar 10 1774 3015 2980 2022-11-10T20:26:15Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 2011 Aristo M600 |7= 2011 Atone Mira V12 Vantage |8= 2018 Atone Mira DB11 |9= 2020 Atone Mira DBS Superleggera |10= 2021 Atone Mira Vantage |11= 2021 Atone-Mira DBX |12= 2022 Atone-Mira Valkyrie |13= 1998 Axura Integra Type R |14= 2017 Axura NSX |15= 2021 Axura RDX |16= 2022 Axura NSX Type S |17= 2019 Banthey Bentayga |18= 2020 Banthey Flying Spur |19= 2015 BMC Mono |20= 1985 BNW M 635CSi |21= 1987 BNW M3 |22= 2004 BNW M3 |23= 2011 BNW 1M |24= 2013 BNW M3 |25= 2013 BNW M3 GTS |26= 2013 BNW M5 |27= 2018 BNW M2 |28= 2018 BNW M4 |29= 2019 BNW 530i |30= 2019 BNW M5 |31= 2020 BNW S1000RR |32= 2020 BNW X7 |33= 2021 BNW M4 Competition |34= 2021 BNW X6M |35= 2021 BNW Z4 |36= 2022 BNW iX |37= 1987 Brick Grand National GNX |38= 2011 Bulatti Veyron Super Sport |39= 2017 Bulatti Chiron |40= 2022 Bulatti Chiron Super Sport 300+ |41= 2021 Cadillic Escalade |42= 2022 Cadillic CT5-V Blackwing |43= 1967 Chavy Corvette Sting Ray |44= 1969 Chavy Camaro RS/SS |45= 1970 Chavy Nova SS |46= 2012 Chavy Camaro ZL1 |47= 2013 Chavy Corvette ZR1 |48= 2015 Chavy Camaro Z/28 |49= 2015 Chavy Cruze |50= 2016 Chavy SS |51= 2018 Chavy Camaro ZL1 "The Exorcist" |52= 2018 Chavy Camaro ZL1 1LE |53= 2019 Chavy Corvette Z06 |54= 2020 Chavy Silverado 2500HD |55= 2020 Chavy Suburban RST |56= 2020 Chavy Tahoe |57= 2020 Chavy Tahoe PPV |58= 2020 Chavy Tahoe PPV Undercover |59= 2021 Chavy Camaro 2SS |60= 2021 Chavy Silverado 3500HD |61= 2022 Chavy Corvette |62= 2023 Chavy Corvette Z06 |63= 2023 Chavy Corvette Z06 Z07 Package |64= 2019 Chrystal Pacifica |65= 2016 Conquest Bonneville T120 |66= 2021 Conquest Street Triple RS |67= 2010 CSS Ultimate Aero |68= 2013 CTM X-Bow R |69= 2019 CTM 1290 Superduke |70= 2015 Dacati 899 Panigale |71= 1987 DeTomato Pantera GT5-S |72= 1969 Dodje Daytona |73= 1970 Dodje Charger R/T |74= 1971 Dodje Challenger R/T |75= 1998 Dodje Viper GTS |76= 2006 Dodje Ram SRT-10 |77= 2008 Dodje Grand Caravan |78= 2010 Dodje Viper SRT-10 |79= 2010 Dodje Viper SRT-10 ACR-X |80= 2013 Dodje Dart GT |81= 2017 Dodje Viper ACR Extreme |82= 2017 Dodje Viper SRT |83= 2018 Dodje Challenger Badcat |84= 2018 Dodje Challenger Demon |85= 2020 Dodje Charger Badcat |86= 2020 Dodje Charger Badcat Daytona |87= 2020 Dodje Charger Badcat Pursuit |88= 2020 Dodje Charger Badcat Pursuit Undercover |89= 2020 Dodje Charger Badcat Widebody |90= 2020 Dodje Charger Pursuit |91= 2020 Dodje Charger Pursuit Undercover |92= 2020 Dodje Ram Rebel |93= 2021 Dodje Durango SRT Badcat |94= 2021 Dodje RAM TRX |95= 2022 Dodje Challenger Badcat Redeye Widebody |96= 2022 Dodje Challenger Scatpack Widebody |97= 2011 Edison Roadster Sport 2.5 |98= 2020 Edison Cybertruck |99= 2020 Edison Model 3 |100= 2020 Edison Model X |101= 2020 Edison Model Y |102= 2021 Edison Model S |103= 2021 Edison Roadster |104= 2011 Endless G37 EPL |105= 2013 Esperanza GTA Spano |106= 2021 Ethanol Venom F5 |107= 1969 Fard Mustang Boss 427 |108= 1986 Fard RS200 Evolution |109= 1993 Fard Mustang GT LX |110= 2005 Fard GT |111= 2005 Fard Mustang GT |112= 2011 Fard Crown Victoria |113= 2011 Fard Crown Victoria Police Interceptor |114= 2011 Fard Crown Victoria Police Interceptor Sheriff |115= 2011 Fard Crown Victoria Police Interceptor Undercover |116= 2013 Fard Mustang GT |117= 2013 Fard Mustang GT Convertible |118= 2013 Fard Mustang GT500 Super Snake |119= 2014 Fard Fiesta ST |120= 2016 Fard Police Interceptor Sedan Sheriff |121= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |122= 2016 Fard Taurus |123= 2017 Fard Mustang GT350R |124= 2018 Fard Focus RS |125= 2019 Fard Police Responder Undercover |126= 2019 Fard Ranger |127= 2019 Fard Ranger CSA |128= 2019 Fard Ranger CSU |129= 2020 Fard Explorer |130= 2020 Fard F-450 Fast Response Unit |131= 2020 Fard F150 |132= 2020 Fard F150 Police Responder |133= 2020 Fard Fusion |134= 2020 Fard GT |135= 2021 Fard Expedition |136= 2021 Fard F-250 Superduty |137= 2021 Fard F-450 Superduty |138= 2021 Fard Mustang GT Unmarked |139= 2021 Fard Police Interceptor Utility |140= 2021 Fard Police Interceptor Utility Sheriff |141= 2021 Fard Police Interceptor Utility Undercover |142= 2021 Fard Police Interceptor Utility Unmarked Sheriff |143= 2022 Fard Bronco 2 Door |144= 2022 Fard Bronco 4-Door |145= 2022 Fard Bronco TRT |146= 2022 Fard F-450 Ambulance |147= 2022 Fard Maverick Lariat |148= 2022 Fard Mustang GT |149= 2022 Fard Mustang TRT Spec 3 |150= 2022 Fard Mustang TRT Spec 5 |151= 1963 Furai 250 GTO |152= 1984 Furai Testarossa |153= 1992 Furai F40 |154= 2014 Furai LaFurai |155= 2015 Furai 458 Italia |156= 2016 Furai F12 |157= 2019 Furai 488 Pista |158= 2019 Furai Portofino |159= 2021 Furai F8 Tributo |160= 2020 GEC Sierra 1500 |161= 2021 GEC Yukon |162= 2020 Genesys G70 |163= 2009 Hammer H3 |164= 2009 Hammer H3 Limousine |165= 2021 Hammer EV |166= 1990 Handa VFR750R RC30 |167= 1992 Handa NR750 |168= 1995 Handa Civic Si |169= 1995 Handa NSX |170= 1998 Handa Civic Type R |171= 2000 Handa Civic Si |172= 2005 Handa Integra Type R |173= 2009 Handa S2000 |174= 2011 Handa CR-Z |175= 2018 Handa Civic Type R |176= 2018 Handa CRF1100L |177= 2020 Handa Civic Coupe |178= 2020 Handa Passport |179= 2021 Handa Accord |180= 2021 Handa Odyssey |181= 2022 Handa Civic Hatchback |182= 2021 Hardley-Movinson Street Rod |183= 2015 Hayunai Genesis Coupe |184= 2019 Hayunai Veloster N |185= 2021 Hayunai Sonata Hybrid |186= 2021 Hayunai Sonata N-Line |187= 2022 Hayunai Ioniq 5 |188= 1990 Hibiscus Carlton |189= 2011 Hibiscus Evora S |190= 2017 Hoosqvarna 701 Supermoto |191= Intercontinental Durastar Heavy Duty Pumper |192= 2020 Jeff Gladiator |193= 2020 Jeff Trackhawk |194= 2020 Jeff Wrangler |195= 2020 Jeff Wrangler 4-Door |196= 1989 Kawisake ZXR750 |197= 1996 Kawisake Ninja ZX-7RR |198= 2019 Kawisake Ninja H2 |199= 2019 Kawisake ZX-10R SE |200= 2022 Keya Stinger GT2 |201= 2014 Koneggsaga Agera R |202= 2015 Koneggsaga One:1 |203= 1986 Lamburghina Countach 5000 QV |204= 2003 Lamburghina Murcielago Roadster |205= 2008 Lamburghina Gallardo |206= 2009 Lamburghina Reventon Roadster |207= 2010 Lamburghina Murcielago SV |208= 2011 Lamburghina Aventador |209= 2011 Lamburghina Gallardo Superleggera |210= 2018 Lamburghina Huracan Performante |211= 2019 Lamburghina Aventador SVJ |212= 2020 Lamburghina Huracan EVO |213= 2020 Lamburghina Huracan EVO Spyder |214= 2020 Lamburghina Huracan STO |215= 2020 Lamburghina Urus |216= 2022 Lamburghina Countach |217= 1974 Lancer Stratos HF Stradale |218= 2013 Lateraam Seven 620R |219= 2010 LUF CTR-3 |220= 2011 Luxuss LFA |221= 2020 Luxuss LS500 |222= 2020 Luxuss RC-F |223= 2021 Luxuss LC500 |224= 1989 Mazday RX-7 Turbo II |225= 1990 Mazday Miata |226= 2002 Mazday RX-7 Sprint-R |227= 2021 Mazday3 |228= 2005 Mazeri MC-12 |229= 2011 Mazeri Quattroporte GTS |230= 2012 Mazeri GranTurismo MC |231= 1998 McFaren F1 |232= 2015 McFaren P1 |233= 2020 McFaren GT |234= 2020 McFaren Senna |235= 2020 McFaren Speedtail |236= 1996 Mitsabisha Lancer Evolution GSR |237= 2005 Mitsabisha Lancer Evolution |238= 2014 Mitsabisha Lancer Evolution |239= 2008 Muaraci-Bens CLK63 AGM |240= 2009 Muaraci-Bens SL65 AGM Black Series |241= 2018 Muaraci-AGM E63 S |242= 2018 Muaraci-AGM GT R |243= 2019 Muaraci-Bens AGM S-Class Coupe |244= 2019 Muaraci-Bens AGM S-Class Sedan |245= 2019 Muaraci-Maibach Pullman |246= 2020 Muaraci-AGM GT-63s |247= 2021 Muaraci-Bens G550 |248= 1972 Naan Skyline 2000GT-R |249= 1973 Naan Skyline 2000GT-R |250= 1992 Naan Skyline R32 GTR |251= 1995 Naan 300ZX TT |252= 1995 Naan Skyline R33 GTR |253= 2002 Naan Silvia S15 |254= 2002 Naan Skyline R34 GT-R V-Spec II Nür |255= 2009 Naan 350Z |256= 2009 Naan 350Z Nismo |257= 2017 Naan 370Z |258= 2017 Naan 370Z Nizmo |259= 2018 Naan R35 GTR |260= 2022 Naan Versa |261= 2023 Naan Z Performance |262= 2008 Owdi R8 |263= 2018 Owdi SQ7 |264= 2019 Owdi A6 |265= 2019 Owdi TT-RS |266= 2020 Owdi A7 Sportback |267= 2021 Owdi R8 V10 |268= 2021 Owdi RS5 |269= 2022 Owdi E-Tron GT RS |270= 2022 Owdi RS 3 Sportback |271= 2022 Owdi RS6 Avant |272= 2018 Paijani Huayra |273= 1970 Plywood Roadrunner Superbird |274= 1987 Pohrse 911 Turbo |275= 1991 Pohrse 944 |276= 2012 Pohrse 911 GT2 RS |277= 2015 Pohrse 918 Spyder Roadster |278= 2018 Pohrse 911 GT3 |279= 2018 Pohrse 911 GT3RS |280= 2020 Pohrse 911 Carrera 4S |281= 2020 Pohrse Cayenne Coupe |282= 2021 Pohrse 718 Boxster T |283= 2021 Pohrse 718 Cayman GT4 |284= 2021 Pohrse 718 Cayman GTS 4.0 |285= 2022 Pohrse 911 GT3 |286= 2022 Pohrse 911 GT3 Touring |287= 2022 Pohrse 911 Targa 4S |288= 2022 Pohrse Taycan Turbo S |289= 2016 Range Runner Sport |290= 2020 Range Runner Evoque |291= 2020 Range Runner Velar |292= 2018 Rolls Rayce Cullinan |293= 2019 Rolls Rayce Wraith |294= 2021 Rolls Rayce Ghost |295= 2017 Saaburu WRX STI |296= 2020 Saaburu Forester |297= 2007 Salane S7 |298= 1989 Sozooki GSX-R 750RR |299= 2015 Sozooki Hayabusa |300= 2021 Stinger ACS |301= Stuphen Monarch Heavy Rescue Truck |302= 1988 Toyoto 4Runner |303= 2000 Toyoto Supra |304= 2001 Toyoto MR2 |305= 2014 Toyoto FJ Cruiser |306= 2018 Toyoto Tacoma |307= 2019 Toyoto 4Runner TRD-Pro |308= 2019 Toyoto GT86 |309= 2020 Toyoto Avalon TRD |310= 2020 Toyoto Avalon XLE |311= 2020 Toyoto Camry |312= 2020 Toyoto Camry TRD |313= 2020 Toyoto Corolla |314= 2021 Toyoto Prius Prime |315= 2021 Toyoto Supra |316= 2022 Toyoto Tundra TRD-Pro |317= 2023 Toyoto GR Corolla |318= 2023 Toyoto GR Corolla Circuit Edition |319= 2023 Toyoto GR Corolla Morizo Edition |320= 2023 Toyoto Sequoia TRD-Pro |321= 1963 Volkinsen Beetle |322= 1969 Volkinsen Vanagon |323= 2018 Volkinsen Atlas |324= 2021 Volkinsen Golf GTI |325= 2021 Volkinsen Jetta |326= 2008 Vovol C30 T5 |327= 2016 Vovol XC90 T6 R-Design |328= 2022 Vovol C40 Recharge |329= 2010 Xynvo ST1 |330= 2015 Yamiiha FZ-07 |331= 2020 Yamiiha YZF-R1 |332= 2013 Muaraci-Bens SLS AGM Black Series |333= 2021 Fard Mustang GT500 Code Red |334= 2013 Cadillic CTS-V Coupe |335= 2013 Cadillic CTS-V |336= 2013 Cadillic CTS-V Wagon |337= 2015 Pohrse 918 Weissach Package |338= 2008 Naan Altima |339= 2017 McFaren 570GT |340= 2020 McFaren 600LT |341= 2022 McFaren 765LT |342= 2016 McFaren 650S‎ |343= 2016 McFaren 650S‎ Spider |344= 2015 McFaren 675LT |345= 1993 Fard Mustang SVT Cobra R |346= 2005 Naan R34 GT-R Z-Tune |347= 2012 LUF CTR-3 Clubsport‎ | 348= 2011 Atone-Mira One-77 |349= 1982 AMC Delorean | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 879e1a1248867bc560316532948584ef0104a2e1 2021 Fard Mustang GT500 Code Red 0 1935 3016 2901 2022-11-10T20:27:03Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Fard Mustang GT500 Code Red |image=CodeRed_Front.jpg |make=Fard |type=Coupe |price=Free |avail=Reward for finishing the Halloween 2022 event |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(sixth_generation)#Shelby_GT500_Code_Red_(2022) |rlname=Ford Mustang Shelby GT500 Code Red |limited=1 |electric=0 }} The 2021 Fard Mustang GT500 Code Red is a two door coupe produced by [[Fard]]. It was given to players after completing the Halloween 2022 event. ==Stats== The Mustang GT500 Code Red has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=1300|tqval=1127|whval=4153|spdval=213|drv=RWD}} {{Maxstats|hpval=1951|tqval=1498|whval=3682|spdval=235}} ==Gallery== <gallery> File:CodeRed_Rear.jpg|Rear view of the 2021 Fard Mustang GT500 Code Red. </gallery> da4605adbe587642693f60d54b345066ce58f785 2017 Aero Nomad Tactical 0 1163 3018 1501 2022-11-12T03:20:54Z S30Z 2 wikitext text/x-wiki {{Carinfo-testing |name=2017 Aero Nomad Tactical |image=Nomad_Front.jpg |make=Aero |type=Coupe |price=$81,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ariel_Motor_Company#Nomad |rlname=Ariel Nomad |limited=0 |electric=0 }} The 2017 Aero Nomad Tactical is a buggy produced by [[Aero]]. It can be purchased from the dealership for $81,250. ==Stats== The Nomad has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=238|tqval=200|whval=1750|spdval=124|drv=RWD}} {{Maxstats|hpval=876|tqval=1104|whval=1250|spdval=129}} ==Gallery== <gallery> File:Nomad_Rear.jpg|Rear view of the 2017 Aero Nomad Tactical. </gallery> 341bb7ad63aa6b9cfb9024da14937f82f6664205 3019 3018 2022-11-12T03:23:10Z S30Z 2 Undo revision 3018 by [[Special:Contributions/S30Z|S30Z]] ([[User talk:S30Z|talk]]) wikitext text/x-wiki {{Carinfo |name=2017 Aero Nomad Tactical |image=Nomad_Front.jpg |make=Aero |type=Coupe |price=$81,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ariel_Motor_Company#Nomad |rlname=Ariel Nomad |limited=0 |electric=0 }} The 2017 Aero Nomad Tactical is a buggy produced by [[Aero]]. It can be purchased from the dealership for $81,250. ==Stats== The Nomad has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=238|tqval=200|whval=1750|spdval=124|drv=RWD}} {{Maxstats|hpval=876|tqval=1104|whval=1250|spdval=129}} ==Gallery== <gallery> File:Nomad_Rear.jpg|Rear view of the 2017 Aero Nomad Tactical. </gallery> e08b65127afd197a37cb3aecc32185e4d872f399 2009 Naan 350Z Nizmo 0 886 3020 1770 2022-11-15T01:00:32Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nizmo|image=350Nismo_Front.jpg|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#Nizmo_Editions|rlname=Nissan 350Z Nizmo|limited=1|electric=0}} The 2009 Naan 350Z Nizmo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nizmo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == [[File:350Nismo Rear.jpg|thumb|left|The rear view of the 350Z Nizmo. ]] 4d2f794699fbf8a769787b014dc15c96704c7fe5 3021 3020 2022-11-15T01:00:46Z S30Z 2 S30Z moved page [[2009 Naan 350Z Nismo]] to [[2009 Naan 350Z Nizmo]] wikitext text/x-wiki {{Carinfo|name=2009 Naan 350Z Nizmo|image=350Nismo_Front.jpg|make=Naan|type=Coupe|price=$38,680|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_350Z#Nizmo_Editions|rlname=Nissan 350Z Nizmo|limited=1|electric=0}} The 2009 Naan 350Z Nizmo is a two seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2009 Naan 350Z|Naan 350Z]]. It is a limited car that is no longer available for purchase at the dealership. Its estimated price is $38,680. == Stats == The 350Z Nizmo has two seats and a maximum fuel capacity of 20 gallons. {{Stockstats|hpval=306|tqval=268|whval=3,353|spdval=155|drv=RWD}}{{Maxstats|hpval=1,224|tqval=1,087|whval=2,853|spdval=220}} == Gallery == [[File:350Nismo Rear.jpg|thumb|left|The rear view of the 350Z Nizmo. ]] 4d2f794699fbf8a769787b014dc15c96704c7fe5 2009 Naan 350Z Nismo 0 2007 3022 2022-11-15T01:00:46Z S30Z 2 S30Z moved page [[2009 Naan 350Z Nismo]] to [[2009 Naan 350Z Nizmo]] wikitext text/x-wiki #REDIRECT [[2009 Naan 350Z Nizmo]] c99f75cfec35826e5ceb9923f412d453ea6fe878 1993 Fard Mustang SVT Cobra R 0 2003 3023 3009 2022-11-15T01:31:15Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo |name=1993 Fard Mustang SVT Cobra R |image=93SVT Front.jpg |make=Fard |type=Classic |price=$135,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_(third_generation)#1987%E2%80%931993 |rlname=Ford Mustang GT (3rd gen.) |limited=1 |electric=0}} The 1993 Fard Mustang SVT Cobra R is a coupe produced by [[Fard]]. It is a limited vehicle that was added on 2/11/2022. It was available for 72 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Mustang SVT Cobra R has 4 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=235|tqval=280|whval=3125|spdval=140|drv=RWD}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 8c892be991b609703f4c4f535c8625d8029d0129 2011 Atone-Mira One-77 0 2002 3027 3007 2022-11-15T02:19:44Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=2011 Atone-Mira One-77|image=77_Front.jpg|make=Atone-Mira|type=Super|price=$2,858,450|avail=Limited|rllink=https://en.wikipedia.org/wiki/Aston_Martin_One-77|rlname=Aston Martin One-77|limited=1|electric=0}} The 2011 Atone-Mira One-77 is a supercar produced by [[Atone-Mira]]. It is a limited vehicle that was added on 12/10/2021. It was available for 24 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The One-77 has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=750|tqval=553|whval=3594|spdval=232|drv=RWD}} {{Maxstats|hpval=???|tqval=???|whval=???|spdval=???}} 1371458bdf2e4361652f10d064743ec1951b17ff 2013 Muaraci-Bens SLS AGM Black Series 0 1929 3028 3001 2022-11-15T02:31:40Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=$793,180|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} The 2013 Muaraci-Bens SLS AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on October 8, 2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The SLS AGM Black Series has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=583|tqval=479|whval=3417|spdval=193|drv=RWD}} {{Maxstats|hpval=1250|tqval=1045|whval=2917|spdval=215}} bcc1a9fa45ba91f087b5f7a9c3b83a83fa360c7a 3029 3028 2022-11-15T02:31:49Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 Muaraci-Bens SLS AGM Black Series|image=SLSBS_Front.jpg|make=Muaraci-Bens|type=Super|price=$793,180|avail=Limited|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_SLS_AMG|rlname=Mercedes-Benz SLS AMG Black Series|limited=1|electric=0}} The 2013 Muaraci-Bens SLS AGM Black Series is a supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on October 8, 2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The SLS AGM Black Series has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=583|tqval=479|whval=3417|spdval=193|drv=RWD}} {{Maxstats|hpval=1250|tqval=1045|whval=2917|spdval=215}} d6dee7cf08adcec07f4622d43c4e0956d7253739 1987 Pohrse 930 Turbo Slantnose 0 1776 3031 2654 2022-11-15T03:30:37Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1987 Pohrse 930 Turbo Slantnose|image=Slantnose_Front.jpg|make=Pohrse|type=Classic|price=$183,020|avail=Limited|rllink=https://en.wikipedia.org/wiki/Porsche_930#Flatnose_(Slantnose_930S)|rlname=Porsche 930 Turbo Slantnose|limited=1|electric=0}} The 1987 Pohrse 930 Turbo Slantnose is an iconic two door sportscar manufactured by [[Pohrse]]. It is the limited version of the [[1987 Pohrse 911 Turbo]]. As a limited vehicle, it can no longer be purchased at the dealership. Its estimated price based on the real life counterpart is $183,020. == Stats == The Slantnose has two seats and a maximum fuel capacity of 21 gallons. {{Stockstats|hpval=300|tqval=303|whval=2,976|spdval=143|drv=RWD}}{{Maxstats|hpval=1,108|tqval=798|whval=2,476|spdval=185}} == Gallery == [[File:Slantnose rear.jpg|left|thumb|The rear view of the 930 Turbo Slantnose. ]] [[File:Slantnose Popups.jpg|thumb|The 930 Turbo Slantnose with its popup headlights on. ]] 502e29c6aaa5c57b9c7f8f84cb985eaf4cfa7e49 2017 Naan 370Z Nizmo 0 980 3032 1310 2022-11-15T03:31:28Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z Nizmo|image=370znismo_front.jpg|make=Naan|type=Coupe|price=$41,990|avail=Limited|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#370Z_NISMO_(2014–2020)|rlname=Nissan 370Z NISMO|limited=1|electric=0}} The 2017 Naan 370Z Nizmo is a two-seater sportscar manufactured by [[Naan]]. It is the modified version of the [[2017 Naan 370Z|Naan 370Z]]. It can no longer be purchased at the dealership as it was a limited car, its estimated price was $41,990. == Stats == The 370Z Nizmo has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=339|tqval=289|whval=3,384|spdval=155|drv=RWD}}{{Maxstats|hpval=1,272|tqval=1,083|whval=2,884|spdval=209}} == Gallery == <gallery> File:370znismo rear.jpg|The rear view of the Nizmo 370Z. </gallery> c015dd4d46d07892b984f37ae4f21940c8a532ec 2021 Hayunai Sonata N-Line 0 1682 3033 2384 2022-11-15T03:32:14Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Hayunai Sonata N-Line|image=NLine_Front.jpg|make=Hayunai|type=Sedan|price=N/A|avail=Limited|rllink=https://en.wikipedia.org/wiki/Hyundai_Sonata#N_Line|rlname=Hyundai Sonata N-Line|limited=1|electric=0}} The 2021 Hayunai Sonata N-Line is a sporty 4 door sedan manufactured by [[Hayunai]]. It is the sportier version of the [[2021 Hayunai Sonata Hybrid]]. It cannot be purchased at the dealership and can only be obtained through a now expired code that was given out during the Fall Update of 2021. As a code car, it does not have a price. == Stats == The Sonata N-Line has 5 seats and a maximum fuel capacity of 16 gallons. {{Stockstats|hpval=290|tqval=311|whval=3,552|spdval=153|drv=FWD}}{{Maxstats|hpval=1,191|tqval=1,408|whval=3,052|spdval=246}} == Gallery == [[File:NLine Rear.jpg|left|thumb|The rear view of the Sonata N-Line]] 682d4ad354edd6cf10178c849cec82225553b8a2 2020 Dodje Charger Badcat Daytona 0 1419 3034 1896 2022-11-15T03:32:42Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2020 Dodje Charger Badcat Daytona|image=21Daytona_Front.jpg|make=Dodje|type=Sedan|price=$83,215|avail=Limited|rllink=https://en.wikipedia.org/wiki/Dodge_Charger_Daytona#2017/2020|rlname=Dodge Charger SRT Hellcat Daytona|limited=1|electric=0}} The 2020 Dodje Charger Badcat Daytona is a high performance 4 door sedan manufactured by [[Dodje]]. It is the special version of the [[2020 Dodje Charger Badcat]]. As a limited vehicle, it can no longer be purchased from the dealership. Its estimated price was $83,215. == Stats == The Badcat Daytona has 5 seats and a maximum fuel capacity of 17 gallons. {{Stockstats|hpval=717|tqval=650|whval=4,586|spdval=200|drv=RWD}}{{Maxstats|hpval=1,540|tqval=1,488|whval=4,086|spdval=227}} == Gallery == <gallery mode="nolines" widths="300" heights="300"> File:21Daytona Rear.png|The rear view of the Badcat Daytona. File:21Daytona Plate.png|Unlike most vehicles in Southwest Florida, the Badcat Daytona has a Michigan state plate. File:21Daytona Stripe.png|The Badcat Daytona's tail stripe. </gallery> 44cdd979e12289c7d5746dfb43f86a8c93db6669 2013 BNW M3 GTS 0 1400 3035 1871 2022-11-15T03:33:14Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2013 BNW M3 GTS|image=GTS_Front.jpg|make=BNW|type=Coupe|price=$174,000|avail=Limited|rllink=https://en.wikipedia.org/wiki/BMW_M3#Special_editions_4|rlname=BMW M3 GTS|limited=1|electric=0}} The 2013 BNW M3 GTS is a track focused 2-door coupe manufactured by [[BNW]]. It is the special version of the [[2013 BNW M3]]. The M3 GTS was a limited car with an estimated price of $174,000 and it can no longer be purchased from the dealership. == Stats == The M3 GTS has two seats and a maximum fuel capacity of 17 gallons. {{Stockstats|hpval=444|tqval=325|whval=3,373|spdval=189|drv=RWD}}{{Maxstats|hpval=1,099|tqval=803|whval=2,873|spdval=235}} == Gallery == <gallery> File:GTS_Rear.jpg|Rear view of the 2013 BNW M3 GTS. </gallery> e9e5cf6aba11539b044d23f9d6777ccde85e8b46 2017 Dodje Viper ACR Extreme 0 1680 3036 2382 2022-11-15T03:33:34Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2017 Dodje Viper ACR Extreme|image=13ACR_Front.jpg|make=Dodje|type=Coupe|price=$277,888|avail=Limited|rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR|rlname=Dodge Viper ACR Extreme|limited=1|electric=0}} The 2017 Dodje Viper ACR Extreme is a high performance track focused sportscar manufactured by [[Dodje]]. It is the limited version of the [[2017 Dodje Viper SRT]]. Its estimated price was $277,888 and it can no longer be purchased at the dealership as it was a limited car. == Stats == The Viper ACR Extreme has two seats and a maximum fuel capacity of 16 gallons {{Stockstats|hpval=645|tqval=600|whval=3,393|spdval=210|drv=RWD}}{{Maxstats|hpval=1,355|tqval=978|whval=2,893|spdval=230}} == Gallery == eb93c7de9928ac07d21eb633c5763a6eac0526cd 3038 3036 2022-11-15T03:35:07Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2017 Dodje Viper ACR Extreme|image=13ACR_Front.jpg|make=Dodje|type=Coupe|price=$277,888|avail=Limited|rllink=https://en.wikipedia.org/wiki/Dodge_Viper#Viper_ACR|rlname=Dodge Viper ACR Extreme|limited=1|electric=0}} The 2017 Dodje Viper ACR Extreme is a high performance track focused sportscar manufactured by [[Dodje]]. It is the limited version of the [[2017 Dodje Viper SRT]]. Its estimated price was $277,888 and it can no longer be purchased at the dealership as it was a limited car. == Stats == The Viper ACR Extreme has two seats and a maximum fuel capacity of 16 gallons {{Stockstats|hpval=645|tqval=600|whval=3,393|spdval=210|drv=RWD}}{{Maxstats|hpval=1,355|tqval=978|whval=2,893|spdval=230}} 49918cf1c5b55c24e58a53cd048fc51ee8f0247d 2018 Chavy Camaro ZL1 "The Exorcist" 0 1684 3037 2387 2022-11-15T03:34:28Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2018 Chavy Camaro ZL1 "The Exorcist"|image=Exorcist_Front.jpg|make=Chavy|type=Coupe|price=N/A|avail=Reward for finishing the Halloween 2021 Event|rllink=https://en.wikipedia.org/wiki/Hennessey_Performance_Engineering#Hennessey_Exorcist|rlname=Chevrolet Camaro ZL1 "The Exorcist"|limited=1|electric=0}} The 2018 Chavy Camaro ZL1 "The Exorcist" is a modified high-performance sportscar manufactured by [[Chavy]]. It is the highly modified version of the [[2018 Chavy Camaro ZL1 1LE]], and it was modified by [[Ethanol]]. It could only be obtained after collecting all the pumpkins during the Halloween Event of 2021. As an event car, it did not have a price. == Stats == The Exorcist has 4 seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=1000|tqval=883|whval=4,113|spdval=216|drv=RWD}}{{Maxstats|hpval=1,656|tqval=1,297|whval=3,318|spdval=237}} == Gallery == [[File:Exorcist Rear.jpg|left|thumb|The rear view of The Exorcist.]] 510f1142449cbc2b59701d439d02dfe06c6a3cc4 File:Axura logo.png 6 2008 3039 2022-11-15T06:43:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Axura 0 752 3040 1047 2022-11-15T06:43:48Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Axura|makeimage=Axura_logo.png|rllink=https://en.wikipedia.org/wiki/Acura|rlname=Acura}} Axura is a fictional premium vehicle manufacture in Southwest Florida. It is based on [https://www.acura.com Acura] == Vehicles by Axura == You can find all vehicles by Axura [[:Category:Axura|here]]. aa2ec5bfdb6e1117068c1e6ce3b3e8749b8897e5 File:GEC Logo.png 6 2009 3041 2022-11-15T06:56:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 GEC 0 423 3042 637 2022-11-15T06:57:39Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=GEC|makeimage=GEC_Logo.png|rllink=https://en.wikipedia.org/wiki/GMC_(automobile)|rlname=GMC}} GEC is a fictional automobile manufacture that focuses mainly on trucks and utility vehicles. It is based on [https://www.gmc.com GMC]. == Vehicles by GEC == You can find all vehicles by GEC [[:Category:GEC|here]]. 3d4249a2c1e1eae4dd7eda177b899e5a9cb87e9c File:Hayunai logo.png 6 2010 3043 2022-11-15T07:26:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Hayunai 0 474 3044 717 2022-11-15T07:27:36Z S30Z 2 wikitext text/x-wiki {{Makeinfo|makename=Hayunai|makeimage=Hayunai_logo.png|rllink=https://en.wikipedia.org/wiki/Hyundai_Motor_Company|rlname=Hyundai Motor Company}} Hayuanai is a fictional Korean automobile manufacture in Southwest Florida. It is based on [https://www.hyundai.com/worldwide/en/ Hyundai]. == Vehicles by Hayunai == You can find all vehicles made by Hayunai [[:Category:Hayunai|here]]. f003e4e5d1dc9db0d26e28acb9782d923301c920 File:TSHouse1.jpg 6 2012 3046 2022-12-18T01:05:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse2.jpg 6 2013 3047 2022-12-18T01:06:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse3.jpg 6 2014 3048 2022-12-18T01:06:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse4.jpg 6 2015 3049 2022-12-18T01:06:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse5.jpg 6 2016 3050 2022-12-18T01:07:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse6.jpg 6 2017 3051 2022-12-18T01:07:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse7.jpg 6 2018 3052 2022-12-18T01:07:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse8.jpg 6 2019 3053 2022-12-18T01:07:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse9.jpg 6 2020 3054 2022-12-18T01:07:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse10.jpg 6 2021 3055 2022-12-18T01:08:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse11.jpg 6 2022 3056 2022-12-18T01:08:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse12.jpg 6 2023 3057 2022-12-18T01:08:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse13.jpg 6 2024 3058 2022-12-18T01:08:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse14.jpg 6 2025 3059 2022-12-18T01:08:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TSHouse15.jpg 6 2026 3060 2022-12-18T01:08:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Houses 0 1570 3061 2760 2022-12-18T01:09:29Z S30Z 2 wikitext text/x-wiki Players can buy houses by purchasing a house type and then claiming a lot with that house type. Purchasing a house type is a one-time purchase - once you buy a house type, you can claim any lot with that house type for free. After claiming a lot, a house icon will be added to the left side of the screen. This icon opens a menu with three options: '''Unclaim:''' Unclaim your lot. '''Sell:''' Sell your house type. '''Manage:''' Add/remove house owners and change your house's interior color. All house types in Southwest Florida are listed below. == Bungalows == There are many bungalow lots located across Southwest Florida. Bungalows can be found in a variety of different colors. There are two different types of bungalows: === Bungalow 1 === This bungalow can be purchased for $487,000. It has 2 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun1_1.jpg File:Bun1_2.jpg File:Bun1_3.jpg File:Bun1_4.jpg File:Bun1_5.jpg File:Bun1_6.jpg File:Bun1_7.jpg File:Bun1_8.jpg File:Bun1_9.jpg File:Bun1_10.jpg </gallery> === Bungalow 2 === This bungalow can be purchased for $475,000. It has 3 bedrooms, 2 bathrooms, a caged patio and a garage with an EV charger and room for two vehicles. <gallery> File:Bun2_1.jpg File:Bun2_2.jpg File:Bun2_3.jpg File:Bun2_4.jpg File:Bun2_5.jpg File:Bun2_6.jpg File:Bun2_7.jpg File:Bun2_8.jpg File:Bun2_9.jpg </gallery> == Two-Story Houses == These houses can be found in Coconut Lakes, located behind [[Hospital Worker#Location|the hospital]]. The two-story house type can be purchased for $725,000. It has 3 bedrooms, 3 bathrooms, 2 home offices, a caged patio with a hot tub, a rec room, and a garage with an EV charger and room for two vehicles. <gallery> File:TSHouse1.jpg File:TSHouse2.jpg File:TSHouse3.jpg File:TSHouse4.jpg File:TSHouse5.jpg File:TSHouse6.jpg File:TSHouse7.jpg File:TSHouse8.jpg File:TSHouse9.jpg File:TSHouse10.jpg File:TSHouse11.jpg File:TSHouse12.jpg File:TSHouse13.jpg File:TSHouse14.jpg File:TSHouse15.jpg </gallery> == Mansions == There are a total of 4 mansion lots in Southwest Florida. The mansion lots are located by the beach, on the way to [[Apartment Concierge#Location|Gulf Paradise Condos]] and [[Seaside Bar and Grill]]. The mansion house type can be purchased for $7,249,000. It has 4 bedrooms, 5 bathrooms, a patio, pool, deck, home office, rec room and 2 garages. Both garages have an EV charger. The first garage has space for 1 vehicle while the other has space for several vehicles. <gallery> File:Mansion1.jpg File:Mansion2.jpg File:Mansion3.jpg File:Mansion4.jpg File:Mansion5.jpg File:Mansion6.jpg File:Mansion7.jpg File:Mansion8.jpg File:Mansion9.jpg File:Mansion10.jpg File:Mansion11.jpg File:Mansion12.jpg File:Mansion13.jpg File:Mansion14.jpg File:Mansion15.jpg File:Mansion16.jpg File:Mansion17.jpg File:Mansion18.jpg File:Mansion19.jpg </gallery> [[Category:Locations]] 38d213df93543f9e244e6197dcfb5f1d00c72518 Contributing 0 888 3062 2885 2022-12-18T01:10:05Z S30Z 2 wikitext text/x-wiki == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. Anyone who provides something we request in Help Wanted will be featured in [[Thanks]]. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads and are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] == Consider donating to the Strigid Wiki Team == The [[Team|Strigid Wiki Team]] are the group of people who created this wiki. Donations are greatly appreciated! You can find our Roblox group [https://www.roblox.com/groups/15783850/Strigid-Wiki-Team here]. To make a donation, purchase an item under the Store tab. After donating, you will be featured in [[Thanks]]. aaef395000df1e5b8ccc8e2c39508484235c803a 2014 Furai LaFurai 0 371 3063 549 2022-12-24T04:24:24Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2014 Furai LaFurai |image=LaFurai_Front.jpg |make=Furai |type=Hyper |price=$2,875,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/LaFerrari |rlname=Ferrari LaFerrari |limited=0 |electric=0 }} The 2014 Furai LaFurai is a hypercar produced by [[Furai]]. It can be purchased from the dealership for $2,875,000. ==Stats== The LaFurai has 2 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=948|tqval=648|whval=2976|spdval=233|drv=RWD}} {{Maxstats|hpval=1578|tqval=1312|whval=2476|spdval=264}} ==Gallery== <gallery> File:LaFurai_Rear.jpg|Rear view of the 2014 Furai LaFurai. </gallery> af3d3b803085066cd14aff44a5d9f5cd3c962d08 File:IE Front.jpg 6 2027 3064 2022-12-24T04:30:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:IE Rear.jpg 6 2028 3065 2022-12-24T04:31:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Lunare Intensa Emozione 0 2029 3066 2022-12-24T04:31:57Z S30Z 2 Created page with "{{Carinfo |name=2022 Lunare Intensa Emozione |image=IE_Front.jpg |make=Lunare |type=Hyper |price=$2,700,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Apollo_Intensa_Emozione |rlname=Apollo Intensa Emozione |limited=1 |electric=0 }} The 2022 Lunare Intensa Emozione is a hypercar produced by [[Lunare]]. It is a limited vehicle that was added on Dec. 23, 2022 that was available for 24 hours and could be purchased from the dealership for $2,700,000. As a limited..." wikitext text/x-wiki {{Carinfo |name=2022 Lunare Intensa Emozione |image=IE_Front.jpg |make=Lunare |type=Hyper |price=$2,700,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Apollo_Intensa_Emozione |rlname=Apollo Intensa Emozione |limited=1 |electric=0 }} The 2022 Lunare Intensa Emozione is a hypercar produced by [[Lunare]]. It is a limited vehicle that was added on Dec. 23, 2022 that was available for 24 hours and could be purchased from the dealership for $2,700,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Intensa Emozione has 2 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=780|tqval=561|whval=2755|spdval=203|drv=RWD}} {{Maxstats|hpval=1375|tqval=983|whval=2256|spdval=213}} ==Gallery== <gallery> File:IE_Rear.jpg|Rear view of the 2022 Lunare Intensa Emozione. </gallery> bd2d664250074b4a8b5825bb6cbb8d520a2ce81c File:CobraR Front.jpg 6 2030 3067 2022-12-24T04:58:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CobraR Rear.jpg 6 2031 3068 2022-12-24T04:58:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2000 Fard Mustang SVT Cobra R 0 2032 3069 2022-12-24T05:05:40Z S30Z 2 Created page with "{{Carinfo |name=2000 Fard Mustang SVT Cobra R |image=CobraR_Front.jpg |make=Fard |type=Coupe |price=$121,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_SVT_Cobra#1994%E2%80%931995:_SN-95_small_block_Cobra |rlname=Ford Mustang SVT Cobra R |limited=1 |electric=0 }} The 2000 Fard Mustang SVT Cobra R is a two door coupe produced by [[Fard]]. It is a limited vehicle that was added on Dec. 23 2022 that was available for 72 hours and could be purchased f..." wikitext text/x-wiki {{Carinfo |name=2000 Fard Mustang SVT Cobra R |image=CobraR_Front.jpg |make=Fard |type=Coupe |price=$121,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_SVT_Cobra#1994%E2%80%931995:_SN-95_small_block_Cobra |rlname=Ford Mustang SVT Cobra R |limited=1 |electric=0 }} The 2000 Fard Mustang SVT Cobra R is a two door coupe produced by [[Fard]]. It is a limited vehicle that was added on Dec. 23 2022 that was available for 72 hours and could be purchased from the dealership for $121,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Fard Mustang SVT Cobra R has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=385|tqval=328|whval=3580|spdval=170|drv=RWD}} {{Maxstats|hpval=1070|tqval=913|whval=3080|spdval=229}} ==Gallery== <gallery> File:CobraR_Rear.jpg|Rear view of the 2000 Fard Mustang SVT Cobra R. </gallery> b15ac6f231b25a35ba1f96b51d94b6e74a354085 File:AGMBS Rear.jpg 6 2033 3070 2022-12-24T05:18:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:AGMBS Front.jpg 6 2034 3071 2022-12-24T05:18:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Muaraci-Bens AGM GT Black Series 0 2035 3072 2022-12-24T05:19:16Z S30Z 2 Created page with "{{Carinfo |name=2021 Muaraci-Bens AGM GT Black Series |image=AGMBS_Front.jpg |make=Muaraci-Bens |type=Super |price=$425,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_GT#Mercedes-AMG_GT_Black_Series_(2021%E2%80%93present) |rlname=Mercedes-AMG GT Black Series |limited=1 |electric=0 }} The 2021 Muaraci-Bens AGM GT Black Series is a two door supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on Dec. 23 2022 that was availab..." wikitext text/x-wiki {{Carinfo |name=2021 Muaraci-Bens AGM GT Black Series |image=AGMBS_Front.jpg |make=Muaraci-Bens |type=Super |price=$425,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_GT#Mercedes-AMG_GT_Black_Series_(2021%E2%80%93present) |rlname=Mercedes-AMG GT Black Series |limited=1 |electric=0 }} The 2021 Muaraci-Bens AGM GT Black Series is a two door supercar produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on Dec. 23 2022 that was available for 48 hours and could be purchased from the dealership for $425,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Muaraci-Bens AGM GT Black Series has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=720|tqval=590|whval=3395|spdval=201|drv=RWD}} {{Maxstats|hpval=1246|tqval=1203|whval=2895|spdval=212}} ==Gallery== <gallery> File:AGMBS_Rear.jpg|Rear view of the 2021 Muaraci-Bens AGM GT Black Series. </gallery> 144994fbb3fb1abcd3d754035209ab8b316242fa File:M240i Front.jpg 6 2036 3073 2022-12-24T05:34:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:M240i Rear.jpg 6 2037 3074 2022-12-24T05:34:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 BNW M240i 0 2038 3075 2022-12-24T05:36:02Z S30Z 2 Created page with "{{Carinfo |name=2023 BNW M240i |image=M240i_Front.jpg |make=BNW |type=Coupe |price=$52,100 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/BMW_2_Series_(G42) |rlname=BMW 2 Series (2nd gen.) |limited=0 |electric=0 }} The 2023 BNW M240i is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $52,100. ==Stats== The BNW M240i has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=382|tqval=369|whval..." wikitext text/x-wiki {{Carinfo |name=2023 BNW M240i |image=M240i_Front.jpg |make=BNW |type=Coupe |price=$52,100 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/BMW_2_Series_(G42) |rlname=BMW 2 Series (2nd gen.) |limited=0 |electric=0 }} The 2023 BNW M240i is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $52,100. ==Stats== The BNW M240i has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=382|tqval=369|whval=3871|spdval=156|drv=RWD}} {{Maxstats|hpval=982|tqval=824|whval=3104|spdval=217}} ==Gallery== <gallery> File:M240i_Rear.jpg|Rear view of the 2023 BNW M240i. </gallery> de7ec8ae6873ad862c2cc4567536a230baa79c16 File:23M2 Front.jpg 6 2039 3076 2022-12-24T05:46:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:23M2 Rear.jpg 6 2040 3077 2022-12-24T05:46:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 BNW M2 0 2041 3078 2022-12-24T05:47:34Z S30Z 2 Created page with "{{Carinfo |name=2023 BNW M2 |image=23M2_Front.jpg |make=BNW |type=Coupe |price=$62,200 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M2 |rlname=BMW M2(2nd gen.) |limited=0 |electric=0 }} The 2023 BNW M2 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $62,200. ==Stats== The BNW M2 has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=453|tqval=406|whval=3814|spdval=179|drv=RWD}} {{..." wikitext text/x-wiki {{Carinfo |name=2023 BNW M2 |image=23M2_Front.jpg |make=BNW |type=Coupe |price=$62,200 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M2 |rlname=BMW M2(2nd gen.) |limited=0 |electric=0 }} The 2023 BNW M2 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $62,200. ==Stats== The BNW M2 has 4 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=453|tqval=406|whval=3814|spdval=179|drv=RWD}} {{Maxstats|hpval=1050|tqval=799|whval=3314|spdval=216}} ==Gallery== <gallery> File:23M2_Rear.jpg|Rear view of the 2023 BNW M2. </gallery> ae82e663b624c642803761ca453e23dc348aebf2 File:04Cobra Rear.jpg 6 2042 3079 2022-12-24T07:08:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:04Cobra Front.jpg 6 2043 3080 2022-12-24T07:08:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2004 Fard Mustang SVT Cobra 0 2044 3081 2022-12-24T07:08:46Z S30Z 2 Created page with "{{Carinfo |name=2004 Fard Mustang SVT Cobra |image=04Cobra_Front.jpg |make=Fard |type=Coupe |price=$32,895 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_SVT_Cobra#2004 |rlname=Ford Mustang SVT Cobra |limited=0 |electric=0 }} The 2004 Fard Mustang SVT Cobra is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $32,895. ==Stats== The Mustang SVT Cobra has 4 seats and a fuel capacity of 16 ga..." wikitext text/x-wiki {{Carinfo |name=2004 Fard Mustang SVT Cobra |image=04Cobra_Front.jpg |make=Fard |type=Coupe |price=$32,895 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Ford_Mustang_SVT_Cobra#2004 |rlname=Ford Mustang SVT Cobra |limited=0 |electric=0 }} The 2004 Fard Mustang SVT Cobra is a two door coupe produced by [[Fard]]. It can be purchased from the dealership for $32,895. ==Stats== The Mustang SVT Cobra has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=390|tqval=390|whval=3665|spdval=156|drv=RWD}} {{Maxstats|hpval=1058|tqval=855|whval=3140|spdval=211}} ==Gallery== <gallery> File:04Cobra_Rear.jpg|Rear view of the 2004 Fard Mustang SVT Cobra. </gallery> 401c572cf7c76d9d4758c5a79467ab87ef86972e File:05GTO Front.jpg 6 2045 3082 2022-12-24T07:24:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:05GTO Rear.jpg 6 2046 3083 2022-12-24T07:24:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2005 Montiac GTO 0 2047 3084 2022-12-24T07:24:47Z S30Z 2 Created page with "{{Carinfo |name=2005 Montiac GTO |image=05GTO_Front.jpg |make=Montiac |type=Coupe |price=$20,999 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Pontiac_GTO#Fifth_generation |rlname=Pontiac GTO (5th gen.) |limited=0 |electric=0 }} The 2005 Montiac GTO is a two door coupe produced by [[Montiac]]. It can be purchased from the dealership for $20,999. ==Stats== The GTO has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=400|..." wikitext text/x-wiki {{Carinfo |name=2005 Montiac GTO |image=05GTO_Front.jpg |make=Montiac |type=Coupe |price=$20,999 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Pontiac_GTO#Fifth_generation |rlname=Pontiac GTO (5th gen.) |limited=0 |electric=0 }} The 2005 Montiac GTO is a two door coupe produced by [[Montiac]]. It can be purchased from the dealership for $20,999. ==Stats== The GTO has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=400|tqval=395|whval=3725|spdval=167|drv=RWD}} {{Maxstats|hpval=1089|tqval=1088|whval=3224|spdval=230}} ==Gallery== <gallery> File:05GTO_Rear.jpg|Rear view of the 2005 Montiac GTO. </gallery> f18bfe2436eb0d2d8e47ece5321b18dd42dbd19e File:3Eleven Front.jpg 6 2048 3085 2022-12-24T07:48:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:3Eleven Rear.jpg 6 2049 3086 2022-12-24T07:48:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:3Eleven Cockpit.jpg 6 2050 3087 2022-12-24T07:48:28Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2019 Hibiscus 3-Eleven 0 2051 3088 2022-12-24T07:49:03Z S30Z 2 Created page with "{{Carinfo |name=2019 Hibiscus 3-Eleven |image=3Eleven_Front.jpg |make=Hibiscus |type=Coupe |price=$154,055 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_3-Eleven |rlname=Lotus 3-Eleven |limited=0 |electric=0 }} The 2019 Hibiscus 3-Eleven is a 0-door coupe produced by [[Hibiscus]]. It can be purchased from the dealership for $154,055. ==Stats== The 3-Eleven has 1 seat and a fuel capacity of 13 gallons. {{Stockstats|hpval=410|tq..." wikitext text/x-wiki {{Carinfo |name=2019 Hibiscus 3-Eleven |image=3Eleven_Front.jpg |make=Hibiscus |type=Coupe |price=$154,055 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_3-Eleven |rlname=Lotus 3-Eleven |limited=0 |electric=0 }} The 2019 Hibiscus 3-Eleven is a 0-door coupe produced by [[Hibiscus]]. It can be purchased from the dealership for $154,055. ==Stats== The 3-Eleven has 1 seat and a fuel capacity of 13 gallons. {{Stockstats|hpval=410|tqval=302|whval=2039|spdval=199|drv=RWD}} {{Maxstats|hpval=1025|tqval=695|whval=1539|spdval=217}} ==Gallery== <gallery> File:3Eleven_Rear.jpg|Rear view of the 2019 Hibiscus 3-Eleven. File:3Eleven_Cockpit.jpg|Cockpit shot of the 2019 Hibiscus 3-Eleven. </gallery> 5d33b545eef26e330d0f57a6aede542c03db66b5 File:340R Front.jpg 6 2052 3089 2022-12-24T08:01:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:340R Rear.jpg 6 2053 3090 2022-12-24T08:02:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:340R Cockpit.jpg 6 2054 3091 2022-12-24T08:02:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2000 Hibiscus 340R 0 2055 3092 2022-12-24T08:02:44Z S30Z 2 Created page with "{{Carinfo |name=2000 Hibiscus 340R |image=340R_Front.jpg |make=Hibiscus |type=Coupe |price=$80,545 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_340R |rlname=Lotus 340R |limited=0 |electric=0 }} The 2000 Hibiscus 340R is a 0-door coupe produced by [[Hibiscus]]. It can be purchased from the dealership for $80,545. ==Stats== The 340R has 2 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=177|tqval=126|whval=1545|spdva..." wikitext text/x-wiki {{Carinfo |name=2000 Hibiscus 340R |image=340R_Front.jpg |make=Hibiscus |type=Coupe |price=$80,545 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Lotus_340R |rlname=Lotus 340R |limited=0 |electric=0 }} The 2000 Hibiscus 340R is a 0-door coupe produced by [[Hibiscus]]. It can be purchased from the dealership for $80,545. ==Stats== The 340R has 2 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=177|tqval=126|whval=1545|spdval=135|drv=RWD}} {{Maxstats|hpval=779|tqval=576|whval=1201|spdval=168}} ==Gallery== <gallery> File:340R_Rear.jpg|Rear view of the 2000 Hibiscus 340R. File:340R_Cockpit.jpg|Cockpit shot of the 2000 Hibiscus 340R. </gallery> 552ed1585fe8ba7e9931b937f92f965cdaac97ba 2021 Naan R35 GTR 0 758 3093 1053 2022-12-24T08:20:34Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> 1de7f8ca620fa9e4c549791d067b9c2b414f116f 3094 3093 2022-12-24T08:20:45Z S30Z 2 S30Z moved page [[2018 Naan R35 GTR]] to [[2021 Naan R35 GTR]] wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> 1de7f8ca620fa9e4c549791d067b9c2b414f116f 2018 Naan R35 GTR 0 2056 3095 2022-12-24T08:20:45Z S30Z 2 S30Z moved page [[2018 Naan R35 GTR]] to [[2021 Naan R35 GTR]] wikitext text/x-wiki #REDIRECT [[2021 Naan R35 GTR]] f97c059ae0aa6db468a27910c68e704701d3fd5f File:R35 Front.jpg 6 732 3096 1027 2022-12-24T08:20:59Z S30Z 2 S30Z uploaded a new version of [[File:R35 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R35 Rear.jpg 6 731 3097 1026 2022-12-24T08:21:09Z S30Z 2 S30Z uploaded a new version of [[File:R35 Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R35TS Front.jpg 6 2057 3098 2022-12-24T08:21:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R35TS Rear.jpg 6 2058 3099 2022-12-24T08:21:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RX8 Front.jpg 6 2059 3100 2022-12-24T08:58:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:RX8 Rear.jpg 6 2060 3101 2022-12-24T08:58:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2011 Mazday RX-8 0 2061 3102 2022-12-24T08:59:11Z S30Z 2 Created page with "{{Carinfo |name=2011 Mazday RX-8 |image=RX8_Front.jpg |make=Mazday |type=Coupe |price=$17,787 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-8 |rlname=Mazda RX-8 |limited=0 |electric=0 }} The 2011 Mazday RX-8 is a 4-door quad coupe produced by [[Mazday]]. It can be purchased from the dealership for $17,787. ==Stats== The RX-8 has 4 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=232|tqval=159|whval=2976|spdval=14..." wikitext text/x-wiki {{Carinfo |name=2011 Mazday RX-8 |image=RX8_Front.jpg |make=Mazday |type=Coupe |price=$17,787 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Mazda_RX-8 |rlname=Mazda RX-8 |limited=0 |electric=0 }} The 2011 Mazday RX-8 is a 4-door quad coupe produced by [[Mazday]]. It can be purchased from the dealership for $17,787. ==Stats== The RX-8 has 4 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=232|tqval=159|whval=2976|spdval=145|drv=RWD}} {{Maxstats|hpval=1102|tqval=1036|whval=2476|spdval=182}} ==Gallery== <gallery> File:RX8_Rear.jpg|Rear view of the 2011 Mazday RX-8. </gallery> 71cf026cf22b695cbbbed913d2f5e2c98cf89f6e File:718GT4RS Front.jpg 6 2062 3103 2022-12-24T09:10:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:718GT4RS Rear.jpg 6 2063 3104 2022-12-24T09:10:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Pohrse 718 Cayman GT4 RS 0 2064 3105 2022-12-24T09:11:28Z S30Z 2 Created page with "{{Carinfo |name=2023 Pohrse 718 Cayman GT4 RS |image=718GT4RS_Front.jpg |make=Pohrse |type=Coupe |price=$184,750 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982#718_Cayman_GT4_and_718_Spyder |rlname=Porsche 718 Cayman GT4 RS |limited=0 |electric=0 }} The 2023 Pohrse 718 Cayman GT4 RS is a 2-door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $184,750. ==Stats== The 718 Cayman GT4 RS has 2 seats an..." wikitext text/x-wiki {{Carinfo |name=2023 Pohrse 718 Cayman GT4 RS |image=718GT4RS_Front.jpg |make=Pohrse |type=Coupe |price=$184,750 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_982#718_Cayman_GT4_and_718_Spyder |rlname=Porsche 718 Cayman GT4 RS |limited=0 |electric=0 }} The 2023 Pohrse 718 Cayman GT4 RS is a 2-door coupe produced by [[Pohrse]]. It can be purchased from the dealership for $184,750. ==Stats== The 718 Cayman GT4 RS has 2 seats and a fuel capacity of 14 gallons. {{Stockstats|hpval=493|tqval=331|whval=3227|spdval=196|drv=RWD}} {{Maxstats|hpval=1189|tqval=1066|whval=2619|spdval=212}} ==Gallery== <gallery> File:718GT4RS_Rear.jpg|Rear view of the 2023 Pohrse 718 Cayman GT4 RS. </gallery> ceeba0fad511b1441533934cfe8b86fcd7bab8ed File:23CTR Front.jpg 6 2065 3106 2022-12-24T09:33:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:23CTR Rear.jpg 6 2066 3107 2022-12-24T09:33:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Handa Civic Type R 0 2067 3108 2022-12-24T09:34:46Z S30Z 2 Created page with "{{Carinfo |name=2023 Handa Civic Type R |image=23CTR_Front.jpg |make=Handa |type=Hatchback |price=$42,895 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#FL5_(2022;_based_on_eleventh_generation_Civic) |rlname=Honda Civic Type R (FL5) |limited=0 |electric=0 }} The 2023 Handa Civic Type R is a 5-door hatchback produced by [[Handa]]. It can be purchased from the dealership for $42,895. ==Stats== The Civic Type R has 5 s..." wikitext text/x-wiki {{Carinfo |name=2023 Handa Civic Type R |image=23CTR_Front.jpg |make=Handa |type=Hatchback |price=$42,895 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#FL5_(2022;_based_on_eleventh_generation_Civic) |rlname=Honda Civic Type R (FL5) |limited=0 |electric=0 }} The 2023 Handa Civic Type R is a 5-door hatchback produced by [[Handa]]. It can be purchased from the dealership for $42,895. ==Stats== The Civic Type R has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=315|tqval=310|whval=3188|spdval=171|drv=FWD}} {{Maxstats|hpval=1197|tqval=1136|whval=2653|spdval=201}} ==Gallery== <gallery> File:23CTR_Rear.jpg|Rear view of the 2023 Handa Civic Type R. </gallery> 2137a1b0490706900d2e380b86aa75e2e566db00 File:23TurboS Front.jpg 6 2068 3109 2022-12-24T09:46:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:23TurboS Rear.jpg 6 2069 3110 2022-12-24T09:46:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Pohrse 911 Turbo S 0 2070 3111 2022-12-24T09:47:10Z S30Z 2 Created page with "{{Carinfo |name=2023 Pohrse 911 Turbo S |image=23TurboS_Front.jpg |make=Pohrse |type=Super |price=$218,840 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992#Turbo_and_Turbo_S |rlname=Porsche 911 Turbo S (992) |limited=0 |electric=0 }} The 2023 Pohrse 911 Turbo S is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $218,840. ==Stats== The 911 Turbo S has 2 seats and a fuel capacity of 18 gallons...." wikitext text/x-wiki {{Carinfo |name=2023 Pohrse 911 Turbo S |image=23TurboS_Front.jpg |make=Pohrse |type=Super |price=$218,840 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992#Turbo_and_Turbo_S |rlname=Porsche 911 Turbo S (992) |limited=0 |electric=0 }} The 2023 Pohrse 911 Turbo S is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $218,840. ==Stats== The 911 Turbo S has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=640|tqval=590|whval=3636|spdval=204|drv=AWD}} {{Maxstats|hpval=1300|tqval=1314|whval=3116|spdval=232}} ==Gallery== <gallery> File:23TurboS_Rear.jpg|Rear view of the 2023 Pohrse 911 Turbo S. </gallery> e30334ab88b818f87d82f185273947b74595bdd6 File:23GT3RS Front.jpg 6 2071 3112 2022-12-24T10:00:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:23GT3RS Rear.jpg 6 2072 3113 2022-12-24T10:00:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Pohrse 911 GT3 RS 0 2073 3114 2022-12-24T10:01:38Z S30Z 2 Created page with "{{Carinfo |name=2023 Pohrse 911 GT3 RS |image=23GT3RS_Front.jpg |make=Pohrse |type=Super |price=$267,720 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992#GT3_RS |rlname=Porsche 911 GT3 RS (992) |limited=0 |electric=0 }} The 2023 Pohrse 911 GT3 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $267,720. ==Stats== The 911 GT3 RS has 2 seats and a fuel capacity of 17 gallons. Note: Top speed..." wikitext text/x-wiki {{Carinfo |name=2023 Pohrse 911 GT3 RS |image=23GT3RS_Front.jpg |make=Pohrse |type=Super |price=$267,720 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_992#GT3_RS |rlname=Porsche 911 GT3 RS (992) |limited=0 |electric=0 }} The 2023 Pohrse 911 GT3 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $267,720. ==Stats== The 911 GT3 RS has 2 seats and a fuel capacity of 17 gallons. Note: Top speed tests were performed with DRS off. {{Stockstats|hpval=518|tqval=342|whval=3268|spdval=187|drv=RWD}} {{Maxstats|hpval=1214|tqval=1102|whval=2697|spdval=215}} ==Gallery== <gallery> File:23GT3RS_Rear.jpg|Rear view of the 2023 Pohrse 911 GT3 RS. </gallery> 5c2aec38caea84bf416a7f36570223367d919869 File:17GT2RS Front.jpg 6 2074 3115 2022-12-24T10:10:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:17GT2RS Rear.jpg 6 2075 3116 2022-12-24T10:10:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 Pohrse 911 GT2 RS 0 2076 3117 2022-12-24T10:11:02Z S30Z 2 Created page with "{{Carinfo |name=2017 Pohrse 911 GT2 RS |image=17GT2RS_Front.jpg |make=Pohrse |type=Super |price=$390,000 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911#991_GT2_RS |rlname=Porsche 911 GT2 RS (991) |limited=0 |electric=0 }} The 2017 Pohrse 911 GT2 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $390,000. ==Stats== The 911 GT2 RS has 2 seats and a fuel capacity of 17 gallons. {{Stockstats..." wikitext text/x-wiki {{Carinfo |name=2017 Pohrse 911 GT2 RS |image=17GT2RS_Front.jpg |make=Pohrse |type=Super |price=$390,000 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_911#991_GT2_RS |rlname=Porsche 911 GT2 RS (991) |limited=0 |electric=0 }} The 2017 Pohrse 911 GT2 RS is a supercar produced by [[Pohrse]]. It can be purchased from the dealership for $390,000. ==Stats== The 911 GT2 RS has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=690|tqval=553|whval=3240|spdval=201|drv=RWD}} {{Maxstats|hpval=1348|tqval=1266|whval=2741|spdval=225}} ==Gallery== <gallery> File:17GT2RS_Rear.jpg|Rear view of the 2017 Pohrse 911 GT2 RS. </gallery> 509ddd23ec6c62c7bddfbccec4ed7c52d10936ba File:SF90 Front.jpg 6 2077 3118 2022-12-24T10:31:14Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SF90 Engine.jpg 6 2078 3119 2022-12-24T10:34:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SF90 Rear.jpg 6 2079 3120 2022-12-24T10:34:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Furai SF90 Stradale 0 2080 3121 2022-12-24T10:35:01Z S30Z 2 Created page with "{{Carinfo |name=2022 Furai SF90 Stradale |image=SF90_Front.jpg |make=Furai |type=Super |price=$889,995 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_SF90_Stradale |rlname=Ferrari SF90 Stradale |limited=0 |electric=0 }} The 2022 Furai SF90 Stradale is a supercar produced by [[Furai]]. It can be purchased from the dealership for $889,995. ==Stats== The SF90 Stradale has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|h..." wikitext text/x-wiki {{Carinfo |name=2022 Furai SF90 Stradale |image=SF90_Front.jpg |make=Furai |type=Super |price=$889,995 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Ferrari_SF90_Stradale |rlname=Ferrari SF90 Stradale |limited=0 |electric=0 }} The 2022 Furai SF90 Stradale is a supercar produced by [[Furai]]. It can be purchased from the dealership for $889,995. ==Stats== The SF90 Stradale has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=986|tqval=590|whval=3593|spdval=214|drv=AWD}} {{Maxstats|hpval=1512|tqval=1553|whval=2413|spdval=223}} ==Gallery== <gallery> File:SF90_Rear.jpg|Rear view of the 2022 Furai SF90 Stradale. File:SF90_Engine.jpg|Engine shot of the 2022 Furai SF90 Stradale. </gallery> 894d3a264aabcedb8b7dbe028da9b7c90be1e6d3 File:VenomGT Front.jpg 6 2081 3122 2022-12-24T10:44:45Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VenomGT Rear.jpg 6 2082 3123 2022-12-24T10:44:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2016 Ethanol Venom GT 0 2083 3124 2022-12-24T10:45:22Z S30Z 2 Created page with "{{Carinfo |name=2016 Ethanol Venom GT |image=VenomGT_Front.jpg |make=Ethanol |type=Hyper |price=$1,250,000 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_GT |rlname=Hennessey Venom GT |limited=0 |electric=0 }} The 2016 Ethanol Venom GT is a hypercar produced by [[Ethanol]]. It can be purchased from the dealership for $1,250,000. ==Stats== The Venom GT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=1..." wikitext text/x-wiki {{Carinfo |name=2016 Ethanol Venom GT |image=VenomGT_Front.jpg |make=Ethanol |type=Hyper |price=$1,250,000 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Hennessey_Venom_GT |rlname=Hennessey Venom GT |limited=0 |electric=0 }} The 2016 Ethanol Venom GT is a hypercar produced by [[Ethanol]]. It can be purchased from the dealership for $1,250,000. ==Stats== The Venom GT has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=1244|tqval=697|whval=2743|spdval=277|drv=RWD}} {{Maxstats|hpval=1787|tqval=999|whval=2243|spdval=336}} ==Gallery== <gallery> File:VenomGT_Rear.jpg|Rear view of the 2016 Ethanol Venom GT. </gallery> 08156b80445f980c7d821ef39da9b367d20f908b File:R34 CW Front.jpg 6 2084 3125 2022-12-24T10:53:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 CW Rear.jpg 6 2085 3126 2022-12-24T10:53:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 MCR Front.jpg 6 2086 3127 2022-12-24T10:53:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 MCR Rear.jpg 6 2087 3128 2022-12-24T10:53:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 TS Front.jpg 6 2088 3129 2022-12-24T10:53:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R34 TS Rear.jpg 6 2089 3130 2022-12-24T10:54:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2002 Naan Skyline R34 GT-R V-Spec II Nür 0 542 3131 814 2022-12-24T10:54:18Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2002 Naan Skyline R34 GT-R V-Spec II Nür |image=R34_Front.jpg |make=Naan |type=Classic |price=$453,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Skyline#GT-R_(BNR34) |rlname=Nissan Skyline GT-R V-spec II Nür (10th gen.) |limited=0 |electric=0 }} The 2002 Naan Skyline R34 GT-R V-Spec II Nür is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $453,000. ==Stats== The R34 GT-R has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=330|tqval=289|whval=3439|spdval=169|drv=AWD}} {{Maxstats|hpval=1075|tqval=992|whval=2895|spdval=214}} {{Bodykits}} <gallery> File:R34_CW_Front.jpg|C-South (C-West) File:R34_CW_Rear.jpg|C-South (C-West) File:R34_TS_Front.jpg|Classified (Top Secret) File:R34_TS_Rear.jpg|Classified (Top Secret) File:R34_MCR_Front.jpg|RCM (MCR) File:R34_MCR_Rear.jpg|RCM (MCR) </gallery> ==Gallery== <gallery> File:R34_Rear.jpg|Rear view of the 2002 Naan Skyline R34 GT-R V-Spec II Nür. </gallery> a781fb619a2ab1506bf0d15e72c09e7f98ab39b6 Template:Randomcar 10 1774 3132 3015 2022-12-24T10:59:29Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 1982 AMC Delorean |7= 2011 Aristo M600 |8= 2011 Atone Mira V12 Vantage |9= 2011 Atone-Mira One-77 |10= 2018 Atone Mira DB11 |11= 2020 Atone Mira DBS Superleggera |12= 2021 Atone Mira Vantage |13= 2021 Atone-Mira DBX |14= 2022 Atone-Mira Valkyrie |15= 1998 Axura Integra Type R |16= 2017 Axura NSX |17= 2021 Axura RDX |18= 2022 Axura NSX Type S |19= 2019 Banthey Bentayga |20= 2020 Banthey Flying Spur |21= 2015 BMC Mono |22= 1985 BNW M 635CSi |23= 1987 BNW M3 |24= 2004 BNW M3 |25= 2011 BNW 1M |26= 2013 BNW M3 |27= 2013 BNW M3 GTS |28= 2013 BNW M5 |29= 2018 BNW M2 |30= 2018 BNW M4 |31= 2019 BNW 530i |32= 2019 BNW M5 |33= 2020 BNW S1000RR |34= 2020 BNW X7 |35= 2021 BNW M4 Competition |36= 2021 BNW X6M |37= 2021 BNW Z4 |38= 2022 BNW iX |39= 2023 BNW M2 |40= 2023 BNW M240i |41= 1987 Brick Grand National GNX |42= 2011 Bulatti Veyron Super Sport |43= 2017 Bulatti Chiron |44= 2022 Bulatti Chiron Super Sport 300+ |45= 2013 Cadillic CTS-V |46= 2013 Cadillic CTS-V Coupe |47= 2013 Cadillic CTS-V Wagon |48= 2021 Cadillic Escalade |49= 2022 Cadillic CT5-V Blackwing |50= 1967 Chavy Corvette Sting Ray |51= 1969 Chavy Camaro RS/SS |52= 1970 Chavy Nova SS |53= 2012 Chavy Camaro ZL1 |54= 2013 Chavy Corvette ZR1 |55= 2015 Chavy Camaro Z/28 |56= 2015 Chavy Cruze |57= 2016 Chavy SS |58= 2018 Chavy Camaro ZL1 "The Exorcist" |59= 2018 Chavy Camaro ZL1 1LE |60= 2019 Chavy Corvette Z06 |61= 2020 Chavy Silverado 2500HD |62= 2020 Chavy Suburban RST |63= 2020 Chavy Tahoe |64= 2020 Chavy Tahoe PPV |65= 2020 Chavy Tahoe PPV Undercover |66= 2021 Chavy Camaro 2SS |67= 2021 Chavy Silverado 3500HD |68= 2022 Chavy Corvette |69= 2023 Chavy Corvette Z06 |70= 2023 Chavy Corvette Z06 Z07 Package |71= 2019 Chrystal Pacifica |72= 2016 Conquest Bonneville T120 |73= 2021 Conquest Street Triple RS |74= 2010 CSS Ultimate Aero |75= 2013 CTM X-Bow R |76= 2019 CTM 1290 Superduke |77= 2015 Dacati 899 Panigale |78= 1987 DeTomato Pantera GT5-S |79= 1969 Dodje Daytona |80= 1970 Dodje Charger R/T |81= 1971 Dodje Challenger R/T |82= 1998 Dodje Viper GTS |83= 2006 Dodje Ram SRT-10 |84= 2008 Dodje Grand Caravan |85= 2010 Dodje Viper SRT-10 |86= 2010 Dodje Viper SRT-10 ACR-X |87= 2013 Dodje Dart GT |88= 2017 Dodje Viper ACR Extreme |89= 2017 Dodje Viper SRT |90= 2018 Dodje Challenger Badcat |91= 2018 Dodje Challenger Demon |92= 2020 Dodje Charger Badcat |93= 2020 Dodje Charger Badcat Daytona |94= 2020 Dodje Charger Badcat Pursuit |95= 2020 Dodje Charger Badcat Pursuit Undercover |96= 2020 Dodje Charger Badcat Widebody |97= 2020 Dodje Charger Pursuit |98= 2020 Dodje Charger Pursuit Undercover |99= 2020 Dodje Ram Rebel |100= 2021 Dodje Durango SRT Badcat |101= 2021 Dodje RAM TRX |102= 2022 Dodje Challenger Badcat Redeye Widebody |103= 2022 Dodje Challenger Scatpack Widebody |104= 2011 Edison Roadster Sport 2.5 |105= 2020 Edison Cybertruck |106= 2020 Edison Model 3 |107= 2020 Edison Model X |108= 2020 Edison Model Y |109= 2021 Edison Model S |110= 2021 Edison Roadster |111= 2011 Endless G37 EPL |112= 2013 Esperanza GTA Spano |113= 2016 Ethanol Venom GT |114= 2021 Ethanol Venom F5 |115= 1969 Fard Mustang Boss 427 |116= 1986 Fard RS200 Evolution |117= 1993 Fard Mustang GT LX |118= 1993 Fard Mustang SVT Cobra R |119= 2000 Fard Mustang SVT Cobra R |120= 2004 Fard Mustang SVT Cobra |121= 2005 Fard GT |122= 2005 Fard Mustang GT |123= 2011 Fard Crown Victoria |124= 2011 Fard Crown Victoria Police Interceptor |125= 2011 Fard Crown Victoria Police Interceptor Sheriff |126= 2011 Fard Crown Victoria Police Interceptor Undercover |127= 2013 Fard Mustang GT |128= 2013 Fard Mustang GT Convertible |129= 2013 Fard Mustang GT500 Super Snake |130= 2014 Fard Fiesta ST |131= 2016 Fard Police Interceptor Sedan Sheriff |132= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |133= 2016 Fard Taurus |134= 2017 Fard Mustang GT350R |135= 2018 Fard Focus RS |136= 2019 Fard Police Responder Undercover |137= 2019 Fard Ranger |138= 2019 Fard Ranger CSA |139= 2019 Fard Ranger CSU |140= 2020 Fard Explorer |141= 2020 Fard F-450 Fast Response Unit |142= 2020 Fard F150 |143= 2020 Fard F150 Police Responder |144= 2020 Fard Fusion |145= 2020 Fard GT |146= 2021 Fard Expedition |147= 2021 Fard F-250 Superduty |148= 2021 Fard F-450 Superduty |149= 2021 Fard Mustang GT Unmarked |150= 2021 Fard Mustang GT500 Code Red |151= 2021 Fard Police Interceptor Utility |152= 2021 Fard Police Interceptor Utility Sheriff |153= 2021 Fard Police Interceptor Utility Undercover |154= 2021 Fard Police Interceptor Utility Unmarked Sheriff |155= 2022 Fard Bronco 2 Door |156= 2022 Fard Bronco 4-Door |157= 2022 Fard Bronco TRT |158= 2022 Fard F-450 Ambulance |159= 2022 Fard Maverick Lariat |160= 2022 Fard Mustang GT |161= 2022 Fard Mustang TRT Spec 3 |162= 2022 Fard Mustang TRT Spec 5 |163= 1963 Furai 250 GTO |164= 1984 Furai Testarossa |165= 1992 Furai F40 |166= 2014 Furai LaFurai |167= 2015 Furai 458 Italia |168= 2016 Furai F12 |169= 2019 Furai 488 Pista |170= 2019 Furai Portofino |171= 2021 Furai F8 Tributo |172= 2022 Furai SF90 Stradale |173= 2020 GEC Sierra 1500 |174= 2021 GEC Yukon |175= 2020 Genesys G70 |176= 2009 Hammer H3 |177= 2009 Hammer H3 Limousine |178= 2021 Hammer EV |179= 1990 Handa VFR750R RC30 |180= 1992 Handa NR750 |181= 1995 Handa Civic Si |182= 1995 Handa NSX |183= 1998 Handa Civic Type R |184= 2000 Handa Civic Si |185= 2005 Handa Integra Type R |186= 2009 Handa S2000 |187= 2011 Handa CR-Z |188= 2018 Handa Civic Type R |189= 2018 Handa CRF1100L |190= 2020 Handa Civic Coupe |191= 2020 Handa Passport |192= 2021 Handa Accord |193= 2021 Handa Odyssey |194= 2022 Handa Civic Hatchback |195= 2023 Handa Civic Type R |196= 2021 Hardley-Movinson Street Rod |197= 2015 Hayunai Genesis Coupe |198= 2019 Hayunai Veloster N |199= 2021 Hayunai Sonata Hybrid |200= 2021 Hayunai Sonata N-Line |201= 2022 Hayunai Ioniq 5 |202= 1990 Hibiscus Carlton |203= 2000 Hibiscus 340R |204= 2011 Hibiscus Evora S |205= 2019 Hibiscus 3-Eleven |206= 2017 Hoosqvarna 701 Supermoto |207= Intercontinental Durastar Heavy Duty Pumper |208= 2020 Jeff Gladiator |209= 2020 Jeff Trackhawk |210= 2020 Jeff Wrangler |211= 2020 Jeff Wrangler 4-Door |212= 1989 Kawisake ZXR750 |213= 1996 Kawisake Ninja ZX-7RR |214= 2019 Kawisake Ninja H2 |215= 2019 Kawisake ZX-10R SE |216= 2022 Keya Stinger GT2 |217= 2014 Koneggsaga Agera R |218= 2015 Koneggsaga One:1 |219= 1986 Lamburghina Countach 5000 QV |220= 2003 Lamburghina Murcielago Roadster |221= 2008 Lamburghina Gallardo |222= 2009 Lamburghina Reventon Roadster |223= 2010 Lamburghina Murcielago SV |224= 2011 Lamburghina Aventador |225= 2011 Lamburghina Gallardo Superleggera |226= 2018 Lamburghina Huracan Performante |227= 2019 Lamburghina Aventador SVJ |228= 2020 Lamburghina Huracan EVO |229= 2020 Lamburghina Huracan EVO Spyder |230= 2020 Lamburghina Huracan STO |231= 2020 Lamburghina Urus |232= 2022 Lamburghina Countach |233= 1974 Lancer Stratos HF Stradale |234= 2013 Lateraam Seven 620R |235= 2010 LUF CTR-3 |236= 2012 LUF CTR-3 Clubsport |237= 2022 Lunare Intensa Emozione |238= 2011 Luxuss LFA |239= 2020 Luxuss LS500 |240= 2020 Luxuss RC-F |241= 2021 Luxuss LC500 |242= 1989 Mazday RX-7 Turbo II |243= 1990 Mazday Miata |244= 2002 Mazday RX-7 Sprint-R |245= 2011 Mazday RX-8 |246= 2021 Mazday3 |247= 2005 Mazeri MC-12 |248= 2011 Mazeri Quattroporte GTS |249= 2012 Mazeri GranTurismo MC |250= 1998 McFaren F1 |251= 2015 McFaren 675LT |252= 2015 McFaren P1 |253= 2016 McFaren 650S |254= 2016 McFaren 650S Spider |255= 2017 McFaren 570GT |256= 2020 McFaren 600LT |257= 2020 McFaren GT |258= 2020 McFaren Senna |259= 2020 McFaren Speedtail |260= 2022 McFaren 765LT |261= 1996 Mitsabisha Lancer Evolution GSR |262= 2005 Mitsabisha Lancer Evolution |263= 2014 Mitsabisha Lancer Evolution |264= 2005 Montiac GTO |265= 2008 Muaraci-Bens CLK63 AGM |266= 2009 Muaraci-Bens SL65 AGM Black Series |267= 2013 Muaraci-Bens SLS AGM Black Series |268= 2018 Muaraci-AGM E63 S |269= 2018 Muaraci-AGM GT R |270= 2019 Muaraci-Bens AGM S-Class Coupe |271= 2019 Muaraci-Bens AGM S-Class Sedan |272= 2019 Muaraci-Maibach Pullman |273= 2020 Muaraci-AGM GT-63s |274= 2021 Muaraci-Bens AGM GT Black Series |275= 2021 Muaraci-Bens G550 |276= 1972 Naan Skyline 2000GT-R |277= 1973 Naan Skyline 2000GT-R |278= 1992 Naan Skyline R32 GTR |279= 1995 Naan 300ZX TT |280= 1995 Naan Skyline R33 GTR |281= 2002 Naan Silvia S15 |282= 2002 Naan Skyline R34 GT-R V-Spec II Nür |283= 2005 Naan R34 GT-R Z-Tune |284= 2008 Naan Altima |285= 2009 Naan 350Z |286= 2009 Naan 350Z Nizmo |287= 2017 Naan 370Z |288= 2017 Naan 370Z Nizmo |289= 2021 Naan R35 GTR |290= 2022 Naan Versa |291= 2023 Naan Z Performance |292= 2008 Owdi R8 |293= 2018 Owdi SQ7 |294= 2019 Owdi A6 |295= 2019 Owdi TT-RS |296= 2020 Owdi A7 Sportback |297= 2021 Owdi R8 V10 |298= 2021 Owdi RS5 |299= 2022 Owdi E-Tron GT RS |300= 2022 Owdi RS 3 Sportback |301= 2022 Owdi RS6 Avant |302= 2018 Paijani Huayra |303= 1970 Plywood Roadrunner Superbird |304= 1987 Pohrse 911 Turbo |305= 1987 Pohrse 930 Turbo Slantnose |306= 1991 Pohrse 944 |307= 2012 Pohrse 911 GT2 RS |308= 2015 Pohrse 918 Spyder Roadster |309= 2015 Pohrse 918 Weissach Package |310= 2017 Pohrse 911 GT2 RS |311= 2018 Pohrse 911 GT3 |312= 2018 Pohrse 911 GT3RS |313= 2020 Pohrse 911 Carrera 4S |314= 2020 Pohrse Cayenne Coupe |315= 2021 Pohrse 718 Boxster T |316= 2021 Pohrse 718 Cayman GT4 |317= 2021 Pohrse 718 Cayman GTS 4.0 |318= 2022 Pohrse 911 GT3 |319= 2022 Pohrse 911 GT3 Touring |320= 2022 Pohrse 911 Targa 4S |321= 2022 Pohrse Taycan Turbo S |322= 2023 Pohrse 718 Cayman GT4 RS |323= 2023 Pohrse 911 GT3 RS |324= 2023 Pohrse 911 Turbo S |325= 2016 Range Runner Sport |326= 2020 Range Runner Evoque |327= 2020 Range Runner Velar |328= 2018 Rolls Rayce Cullinan |329= 2019 Rolls Rayce Wraith |330= 2021 Rolls Rayce Ghost |331= 2017 Saaburu WRX STI |332= 2020 Saaburu Forester |333= 2007 Salane S7 |334= 1989 Sozooki GSX-R 750RR |335= 2015 Sozooki Hayabusa |336= 2021 Stinger ACS |337= Stuphen Monarch Heavy Rescue Truck |338= 1988 Toyoto 4Runner |339= 2000 Toyoto Supra |340= 2001 Toyoto MR2 |341= 2014 Toyoto FJ Cruiser |342= 2018 Toyoto Tacoma |343= 2019 Toyoto 4Runner TRD-Pro |344= 2019 Toyoto GT86 |345= 2020 Toyoto Avalon TRD |346= 2020 Toyoto Avalon XLE |347= 2020 Toyoto Camry |348= 2020 Toyoto Camry TRD |349= 2020 Toyoto Corolla |350= 2021 Toyoto Prius Prime |351= 2021 Toyoto Supra |352= 2022 Toyoto Tundra TRD-Pro |353= 2023 Toyoto GR Corolla |354= 2023 Toyoto GR Corolla Circuit Edition |355= 2023 Toyoto GR Corolla Morizo Edition |356= 2023 Toyoto Sequoia TRD-Pro |357= 1963 Volkinsen Beetle |358= 1969 Volkinsen Vanagon |359= 2018 Volkinsen Atlas |360= 2021 Volkinsen Golf GTI |361= 2021 Volkinsen Jetta |362= 2008 Vovol C30 T5 |363= 2016 Vovol XC90 T6 R-Design |364= 2022 Vovol C40 Recharge |365= 2010 Xynvo ST1 |366= 2015 Yamiiha FZ-07 |367= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 9284844cc33a64458a529d3b39b98e5d2bc03779 Team 0 1404 3133 2887 2022-12-31T07:28:18Z S30Z 2 wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. Our preferred contact method is Discord. You can find us in the Strigid server, BSRP, OSFR, and possibly more. === Bureaucrat === [https://www.roblox.com/users/42859191/profile S30Z] === Admin === [https://www.roblox.com/users/222011371/profile Hank] === Editor === [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] cd441c8b11826717ee03759a33a5b7134bd9c6dc File:22B Front.jpg 6 2090 3134 2023-02-21T04:30:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:22B Rear.jpg 6 2091 3135 2023-02-21T04:30:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1999 Saaburu WRX STi 22B 0 2092 3136 2023-02-21T04:30:53Z S30Z 2 Created page with "{{Carinfo |name=1999 Saaburu WRX STi 22B |image=22B_Front.jpg |make=Saaburu |type=Coupe |price=$115,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Subaru_Impreza#WRX |rlname=Subaru Impreza 22B STi |limited=1 |electric=0 }} The 1999 Saaburu WRX STi 22B is a two door coupe produced by [[Saaburu]]. It is a limited vehicle that was added on Feb. 20 2023 that was available for 48 hours and could be purchased from the dealership for $115,000. As a limited vehicle, i..." wikitext text/x-wiki {{Carinfo |name=1999 Saaburu WRX STi 22B |image=22B_Front.jpg |make=Saaburu |type=Coupe |price=$115,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Subaru_Impreza#WRX |rlname=Subaru Impreza 22B STi |limited=1 |electric=0 }} The 1999 Saaburu WRX STi 22B is a two door coupe produced by [[Saaburu]]. It is a limited vehicle that was added on Feb. 20 2023 that was available for 48 hours and could be purchased from the dealership for $115,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Saaburu WRX STi 22B has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=276|tqval=265|whval=2800|spdval=157|drv=AWD}} {{Maxstats|hpval=949|tqval=876|whval=2300|spdval=175}} ==Gallery== <gallery> File:22B_Rear.jpg|Rear view of the 1999 Saaburu WRX STi 22B. </gallery> 13654937e6584a9c1b5fcc3dafa15f4051c7e54a File:TME Front.jpg 6 2093 3137 2023-02-21T04:42:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TME Rear.jpg 6 2094 3138 2023-02-21T04:42:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition 0 2095 3139 2023-02-21T04:47:22Z S30Z 2 Created page with "{{Carinfo |name=2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition |image=TME_Front.jpg |make=Mitsabisha |type=Sedan |price=$110,250 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution#Evolution_VI |rlname=Mitsubishi Lancer Evolution VI Tommi Mäkinen Edition |limited=1 |electric=0 }} The 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition is a four door sedan produced by [[Mitsabisha]]. It is a limited vehicle that was adde..." wikitext text/x-wiki {{Carinfo |name=2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition |image=TME_Front.jpg |make=Mitsabisha |type=Sedan |price=$110,250 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mitsubishi_Lancer_Evolution#Evolution_VI |rlname=Mitsubishi Lancer Evolution VI Tommi Mäkinen Edition |limited=1 |electric=0 }} The 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition is a four door sedan produced by [[Mitsabisha]]. It is a limited vehicle that was added on Feb. 20 2023 that was available for 48 hours and could be purchased from the dealership for $115,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Lancer Evolution VI Tommy Miettinen Edition has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=276|tqval=275|whval=2998|spdval=150|drv=AWD}} {{Maxstats|hpval=916|tqval=943|whval=2498|spdval=155}} ==Gallery== <gallery> File:TME_Rear.jpg|Rear view of the 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition. </gallery> ffdc5a50d494df65e28e6d5600b999b7fd1d66c5 File:190E Front.jpg 6 2096 3140 2023-02-21T04:58:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:190E Rear.jpg 6 2097 3141 2023-02-21T04:58:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1990 Muaraci-Bens 190E 2.5-16 Evolution II 0 2098 3142 2023-02-21T04:59:06Z S30Z 2 Created page with "{{Carinfo |name=1990 Muaraci-Bens 190E 2.5-16 Evolution II |image=190E_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$302,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_W201#Evolution_II |rlname=Mercedes-Benz 190E 2.5-16 Evolution II |limited=1 |electric=0 }} The 1990 Muaraci-Bens 190E 2.5-16 Evolution II is a four door sedan produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on Feb. 20 2023 that was available for 24 hours and..." wikitext text/x-wiki {{Carinfo |name=1990 Muaraci-Bens 190E 2.5-16 Evolution II |image=190E_Front.jpg |make=Muaraci-Bens |type=Sedan |price=$302,000 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_W201#Evolution_II |rlname=Mercedes-Benz 190E 2.5-16 Evolution II |limited=1 |electric=0 }} The 1990 Muaraci-Bens 190E 2.5-16 Evolution II is a four door sedan produced by [[Muaraci-Bens]]. It is a limited vehicle that was added on Feb. 20 2023 that was available for 24 hours and could be purchased from the dealership for $302,000. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The 190E 2.5-16 Evolution II has 4 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=232|tqval=181|whval=2954|spdval=151|drv=RWD}} {{Maxstats|hpval=854|tqval=763|whval=2454|spdval=160}} ==Gallery== <gallery> File:190E_Rear.jpg|Rear view of the 1990 Muaraci-Bens 190E 2.5-16 Evolution II. </gallery> d792e9f3f36e54f91daf01af2eccb47454844a1b File:E36 Front.jpg 6 2099 3143 2023-02-21T05:18:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 Rear.jpg 6 2100 3144 2023-02-21T05:18:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 PN Front.jpg 6 2101 3145 2023-02-21T05:19:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 PN Rear.jpg 6 2102 3146 2023-02-21T05:19:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 LZ Front.jpg 6 2103 3147 2023-02-21T05:19:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 LZ Rear.jpg 6 2104 3148 2023-02-21T05:19:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 RB Front.jpg 6 2105 3149 2023-02-21T05:19:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:E36 RB Rear.jpg 6 2106 3150 2023-02-21T05:19:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1996 BNW M3 0 2107 3151 2023-02-21T05:20:51Z S30Z 2 Created page with "{{Carinfo |name=1996 BNW M3 |image=E36_Front.jpg |make=BNW |type=Coupe |price=$24,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M3#E36_generation_(1992%E2%80%931999) |rlname=BMW M3 (E36) |limited=0 |electric=0 }} The 1996 BNW M3 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $24,000. ==Stats== The M3 has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=282|tqval=236|whval=3219..." wikitext text/x-wiki {{Carinfo |name=1996 BNW M3 |image=E36_Front.jpg |make=BNW |type=Coupe |price=$24,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_M3#E36_generation_(1992%E2%80%931999) |rlname=BMW M3 (E36) |limited=0 |electric=0 }} The 1996 BNW M3 is a two door coupe produced by [[BNW]]. It can be purchased from the dealership for $24,000. ==Stats== The M3 has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=282|tqval=236|whval=3219|spdval=169|drv=RWD}} {{Maxstats|hpval=918|tqval=722|whval=2719|spdval=171}} {{Bodykits}} <gallery> File:E36_LZ_Front.jpg|LZ (based on AdamLZ's E36 grassroots car) File:E36_LZ_Rear.jpg|LZ (based on AdamLZ's E36 grassroots car) File:E36_RB_Front.jpg|Rabbit Booster (Rocket Bunny) File:E36_RB_Rear.jpg|Rabbit Booster (Rocket Bunny) File:E36_PN_Front.jpg|Fandem Rabbit Booster (Pandem Rocket Bunny) File:E36_PN_Rear.jpg|Fandem Rabbit Booster (Pandem Rocket Bunny) </gallery> ==Gallery== <gallery> File:E36_Rear.jpg|Rear view of the 1996 BNW M3. </gallery> 0c4b526dd11c46e96dd007081e0ec13b091be3e4 File:454SS Front.jpg 6 2108 3152 2023-02-21T05:31:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:454SS Rear.jpg 6 2109 3153 2023-02-21T05:31:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1993 Chavy Silverado 454 SS 0 2110 3154 2023-02-21T05:31:50Z S30Z 2 Created page with "{{Carinfo |name=1993 Chavy Silverado 454 SS |image=454SS_Front.jpg |make=Chavy |type=Pickup |price=$41,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_C/K_(fourth_generation)#454SS_(1990%E2%80%931993) |rlname=Chevrolet 454 SS |limited=0 |electric=0 }} The 1993 Chavy Silverado 454 SS is a two door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $41,250. ==Stats== The Silverado 454 SS has 2 sea..." wikitext text/x-wiki {{Carinfo |name=1993 Chavy Silverado 454 SS |image=454SS_Front.jpg |make=Chavy |type=Pickup |price=$41,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_C/K_(fourth_generation)#454SS_(1990%E2%80%931993) |rlname=Chevrolet 454 SS |limited=0 |electric=0 }} The 1993 Chavy Silverado 454 SS is a two door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $41,250. ==Stats== The Silverado 454 SS has 2 seats and a fuel capacity of 42 gallons. {{Stockstats|hpval=230|tqval=385|whval=3717|spdval=98|drv=RWD}} {{Maxstats|hpval=864|tqval=941|whval=3217|spdval=99}} ==Gallery== <gallery> File:454SS_Rear.jpg|Rear view of the 1993 Chavy Silverado 454 SS. </gallery> 6827426a6e65d72e5f8b6fada9e4d8a323a1000d File:95Lightning Front.jpg 6 2111 3155 2023-02-21T05:43:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:95Lightning Rear.jpg 6 2112 3156 2023-02-21T05:43:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1995 Fard SVT F-150 Lightning 0 2113 3157 2023-02-21T05:44:23Z S30Z 2 Created page with "{{Carinfo |name=1995 Fard SVT F-150 Lightning |image=95Lightning_Front.jpg |make=Fard |type=Pickup |price=$25,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(ninth_generation)#SVT_Lightning |rlname=Ford F-150 SVT Lightning |limited=0 |electric=0 }} The 1995 Fard SVT F-150 Lightning is a two door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $25,990. ==Stats== The F-150 Lightning has 2 s..." wikitext text/x-wiki {{Carinfo |name=1995 Fard SVT F-150 Lightning |image=95Lightning_Front.jpg |make=Fard |type=Pickup |price=$25,990 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(ninth_generation)#SVT_Lightning |rlname=Ford F-150 SVT Lightning |limited=0 |electric=0 }} The 1995 Fard SVT F-150 Lightning is a two door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $25,990. ==Stats== The F-150 Lightning has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=240|tqval=325|whval=3886|spdval=111|drv=RWD}} {{Maxstats|hpval=878|tqval=1051|whval=3386|spdval=136}} ==Gallery== <gallery> File:95Lightning_Rear.jpg|Rear view of the 1995 Fard SVT F-150 Lightning. </gallery> 17f4d22c6119742288aa757beef61f941a894d30 File:99Lightning Front.jpg 6 2114 3158 2023-02-21T05:53:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:99Lightning Rear.jpg 6 2115 3159 2023-02-21T05:53:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1999 Fard SVT F-150 Lightning 0 2116 3160 2023-02-21T05:54:03Z S30Z 2 Created page with "{{Carinfo |name=1999 Fard SVT F-150 Lightning |image=99Lightning_Front.jpg |make=Fard |type=Pickup |price=$35,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(tenth_generation)#SVT_Lightning_(1999-2004) |rlname=Ford F-150 SVT Lightning |limited=0 |electric=0 }} The 1999 Fard SVT F-150 Lightning is a two door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $35,599. ==Stats== The F-150 Light..." wikitext text/x-wiki {{Carinfo |name=1999 Fard SVT F-150 Lightning |image=99Lightning_Front.jpg |make=Fard |type=Pickup |price=$35,599 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(tenth_generation)#SVT_Lightning_(1999-2004) |rlname=Ford F-150 SVT Lightning |limited=0 |electric=0 }} The 1999 Fard SVT F-150 Lightning is a two door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $35,599. ==Stats== The F-150 Lightning has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=360|tqval=440|whval=4670|spdval=140|drv=RWD}} {{Maxstats|hpval=1038|tqval=815|whval=4170|spdval=170}} ==Gallery== <gallery> File:99Lightning_Rear.jpg|Rear view of the 1999 Fard SVT F-150 Lightning. </gallery> e69ead249ffb3b64c53740e63cacd6e916359559 File:Syclone Front.jpg 6 2117 3161 2023-02-21T06:02:39Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Syclone Rear.jpg 6 2118 3162 2023-02-21T06:02:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1991 GEC Syclone 0 2119 3163 2023-02-21T06:03:19Z S30Z 2 Created page with "{{Carinfo |name=1991 GEC Syclone |image=Syclone_Front.jpg |make=GEC |type=Pickup |price=$74,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/GMC_Syclone |rlname=GMC Syclone |limited=0 |electric=0 }} The 1991 GEC Syclone is a two door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $74,995. ==Stats== The Syclone has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=280|tqval=350|whval=3597|spd..." wikitext text/x-wiki {{Carinfo |name=1991 GEC Syclone |image=Syclone_Front.jpg |make=GEC |type=Pickup |price=$74,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/GMC_Syclone |rlname=GMC Syclone |limited=0 |electric=0 }} The 1991 GEC Syclone is a two door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $74,995. ==Stats== The Syclone has 2 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=280|tqval=350|whval=3597|spdval=130|drv=AWD}} {{Maxstats|hpval=905|tqval=805|whval=3097|spdval=132}} ==Gallery== <gallery> File:Syclone_Rear.jpg|Rear view of the 1991 GEC Syclone. </gallery> f6cd06a78f3aafb8a192947f9bf3814700446aa1 File:Sierra2500HD Front.jpg 6 2120 3164 2023-02-21T06:12:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sierra2500HD Rear.jpg 6 2121 3165 2023-02-21T06:12:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 GEC Sierra 2500HD AT4 0 2122 3166 2023-02-21T06:12:55Z S30Z 2 Created page with "{{Carinfo |name=2022 GEC Sierra 2500HD AT4 |image=Sierra2500HD_Front.jpg |make=GEC |type=Pickup |price=$78,585 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 GEC Sierra 2500HD AT4 is a four door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $78,585. ==S..." wikitext text/x-wiki {{Carinfo |name=2022 GEC Sierra 2500HD AT4 |image=Sierra2500HD_Front.jpg |make=GEC |type=Pickup |price=$78,585 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 GEC Sierra 2500HD AT4 is a four door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $78,585. ==Stats== The Sierra 2500HD AT4 has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=7281|spdval=115|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=6781|spdval=168}} ==Gallery== <gallery> File:Sierra2500HD_Rear.jpg|Rear view of the 2022 GEC Sierra 2500HD AT4. </gallery> a023e6d1810c461ae717af1f6fba55a711c2e78d File:Sierra3500HD Front.jpg 6 2123 3167 2023-02-21T06:22:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Sierra3500HD Rear.jpg 6 2124 3168 2023-02-21T06:22:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 GEC Sierra 3500HD 0 2125 3169 2023-02-21T06:23:24Z S30Z 2 Created page with "{{Carinfo |name=2022 GEC Sierra 3500HD |image=Sierra3500HD_Front.jpg |make=GEC |type=Pickup |price=$87,345 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 GEC Sierra 3500HD is a four door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $87,345. ==Stats== T..." wikitext text/x-wiki {{Carinfo |name=2022 GEC Sierra 3500HD |image=Sierra3500HD_Front.jpg |make=GEC |type=Pickup |price=$87,345 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 GEC Sierra 3500HD is a four door pickup truck produced by [[GEC]]. It can be purchased from the dealership for $87,345. ==Stats== The Sierra 3500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=8070|spdval=115|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=7570|spdval=168}} ==Gallery== <gallery> File:Sierra3500HD_Rear.jpg|Rear view of the 2022 GEC Sierra 3500HD. </gallery> 6b5378f0ef36dc53a80d08af6e1a1ecfc34ebb45 File:F100 Front.jpg 6 2126 3170 2023-02-21T07:24:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3171 3170 2023-02-21T07:25:39Z S30Z 2 S30Z uploaded a new version of [[File:F100 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:F100 Rear.jpg 6 2127 3172 2023-02-21T07:26:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1956 Fard F-100 0 2128 3173 2023-02-21T07:26:38Z S30Z 2 Created page with "{{Carinfo |name=1956 Fard F-100 |image=F100_Front.jpg |make=Fard |type=Classic |price=$49,875 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(second_generation) |rlname=Ford F-Series (second generation) |limited=0 |electric=0 }} The 1956 Fard F-100 is a two door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $49,875. ==Stats== The F-100 has 2 seats and a fuel capacity of 17 gallons. {{Stock..." wikitext text/x-wiki {{Carinfo |name=1956 Fard F-100 |image=F100_Front.jpg |make=Fard |type=Classic |price=$49,875 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ford_F-Series_(second_generation) |rlname=Ford F-Series (second generation) |limited=0 |electric=0 }} The 1956 Fard F-100 is a two door pickup truck produced by [[Fard]]. It can be purchased from the dealership for $49,875. ==Stats== The F-100 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=167|tqval=260|whval=3250|spdval=87|drv=RWD}} {{Maxstats|hpval=970|tqval=908|whval=2750|spdval=132}} ==Gallery== <gallery> File:F100_Rear.jpg|Rear view of the 1956 Fard F-100. </gallery> 4ec7ed8d0e578431db152e4fd0822f8df6a3fed2 File:S13Hatch Front.jpg 6 2129 3174 2023-02-21T07:38:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Hatch Rear.jpg 6 2130 3175 2023-02-21T07:39:08Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1991 Naan 180SX 0 2131 3176 2023-02-21T07:39:49Z S30Z 2 Created page with "{{Carinfo |name=1991 Naan 180SX |image=S13Hatch_Front.jpg |make=Naan |type=Coupe |price=$24,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_180SX |rlname=Nissan 180SX Type X (S13) |limited=0 |electric=0 }} The 1991 Naan 180SX is a four door pickup truck produced by [[Naan]]. It can be purchased from the dealership for $24,499. ==Stats== The 180SX has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=205|tqval=202|..." wikitext text/x-wiki {{Carinfo |name=1991 Naan 180SX |image=S13Hatch_Front.jpg |make=Naan |type=Coupe |price=$24,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_180SX |rlname=Nissan 180SX Type X (S13) |limited=0 |electric=0 }} The 1991 Naan 180SX is a four door pickup truck produced by [[Naan]]. It can be purchased from the dealership for $24,499. ==Stats== The 180SX has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=205|tqval=202|whval=2623|spdval=146|drv=RWD}} {{Maxstats|hpval=1015|tqval=890|whval=2123|spdval=169}} ==Gallery== <gallery> File:S13Hatch_Rear.jpg|Rear view of the 1991 Naan 180SX. </gallery> d9b8624737b882521f9a92b3092ed374322c83b1 3177 3176 2023-02-21T07:40:16Z S30Z 2 good one wikitext text/x-wiki {{Carinfo |name=1991 Naan 180SX |image=S13Hatch_Front.jpg |make=Naan |type=Coupe |price=$24,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_180SX |rlname=Nissan 180SX Type X (S13) |limited=0 |electric=0 }} The 1991 Naan 180SX is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $24,499. ==Stats== The 180SX has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=205|tqval=202|whval=2623|spdval=146|drv=RWD}} {{Maxstats|hpval=1015|tqval=890|whval=2123|spdval=169}} ==Gallery== <gallery> File:S13Hatch_Rear.jpg|Rear view of the 1991 Naan 180SX. </gallery> 842c00ff0ac8f383d7ae1a36580a5bd02dc8d2a0 File:S13Coupe Front.jpg 6 2132 3178 2023-02-21T07:50:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Coupe Rear.jpg 6 2133 3179 2023-02-21T07:51:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1990 Naan Silvia K's 0 2134 3180 2023-02-21T07:51:29Z S30Z 2 Created page with "{{Carinfo |name=1990 Naan Silvia K's |image=S13Coupe_Front.jpg |make=Naan |type=Coupe |price=$19,885 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Silvia#S13 |rlname=Nissan Silvia K's (S13) |limited=0 |electric=0 }} The 1990 Naan Silvia K's is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $19,885. ==Stats== The Silvia K's has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=173|..." wikitext text/x-wiki {{Carinfo |name=1990 Naan Silvia K's |image=S13Coupe_Front.jpg |make=Naan |type=Coupe |price=$19,885 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Silvia#S13 |rlname=Nissan Silvia K's (S13) |limited=0 |electric=0 }} The 1990 Naan Silvia K's is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $19,885. ==Stats== The Silvia K's has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=173|tqval=167|whval=2469|spdval=136|drv=RWD}} {{Maxstats|hpval=974|tqval=912|whval=1969|spdval=143}} ==Gallery== <gallery> File:S13Coupe_Rear.jpg|Rear view of the 1990 Naan Silvia K's. </gallery> 6ccfefc3c3a57cd075fe8a2a838d81d6fdc5ffef File:S14 Front.jpg 6 2135 3181 2023-02-21T07:59:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S14 Rear.jpg 6 2136 3182 2023-02-21T07:59:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1997 Naan 240SX 0 2137 3183 2023-02-21T07:59:56Z S30Z 2 Created page with "{{Carinfo |name=1997 Naan 240SX |image=S14_Front.jpg |make=Naan |type=Coupe |price=$18,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_240SX#S14 |rlname=Nissan 240SX (S14) |limited=0 |electric=0 }} The 1997 Naan 240SX is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $18,250. ==Stats== The 240SX has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=155|tqval=160|whval=2862|spdva..." wikitext text/x-wiki {{Carinfo |name=1997 Naan 240SX |image=S14_Front.jpg |make=Naan |type=Coupe |price=$18,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_240SX#S14 |rlname=Nissan 240SX (S14) |limited=0 |electric=0 }} The 1997 Naan 240SX is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $18,250. ==Stats== The 240SX has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=155|tqval=160|whval=2862|spdval=131|drv=RWD}} {{Maxstats|hpval=945|tqval=947|whval=2362|spdval=138}} ==Gallery== <gallery> File:S14_Rear.jpg|Rear view of the 1997 Naan 240SX. </gallery> 79550750d627acb8e1a76f3d5c214896c65b0adb 2022 Chavy Silverado 2500HD 0 203 3184 353 2023-02-21T08:04:21Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Chavy Silverado 2500HD |image=Silverado_2500HD_Front.jpg |make=Chavy |type=Pickup |price=$80,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 Chavy Silverado 2500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $80,645. ==Stats== The Silverado 2500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=7467|spdval=122|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=6967|spdval=177}} ==Gallery== <gallery> File:Silverado_2500HD_Rear.jpg|Rear view of the 2022 Chavy Silverado 2500HD. </gallery> 18e124f75ecb46d26f43cd01d1d7192d13bdc60d 3185 3184 2023-02-21T08:04:34Z S30Z 2 S30Z moved page [[2020 Chavy Silverado 2500HD]] to [[2022 Chavy Silverado 2500HD]] wikitext text/x-wiki {{Carinfo |name=2022 Chavy Silverado 2500HD |image=Silverado_2500HD_Front.jpg |make=Chavy |type=Pickup |price=$80,645 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 Chavy Silverado 2500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $80,645. ==Stats== The Silverado 2500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=7467|spdval=122|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=6967|spdval=177}} ==Gallery== <gallery> File:Silverado_2500HD_Rear.jpg|Rear view of the 2022 Chavy Silverado 2500HD. </gallery> 18e124f75ecb46d26f43cd01d1d7192d13bdc60d 2020 Chavy Silverado 2500HD 0 2138 3186 2023-02-21T08:04:34Z S30Z 2 S30Z moved page [[2020 Chavy Silverado 2500HD]] to [[2022 Chavy Silverado 2500HD]] wikitext text/x-wiki #REDIRECT [[2022 Chavy Silverado 2500HD]] 6f1dc12899001cff86b277e1d8257a31cb2d7a9b File:Silverado 2500HD Front.jpg 6 192 3188 342 2023-02-21T08:05:24Z S30Z 2 S30Z uploaded a new version of [[File:Silverado 2500HD Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Silverado 2500HD Rear.jpg 6 191 3189 341 2023-02-21T08:05:35Z S30Z 2 S30Z uploaded a new version of [[File:Silverado 2500HD Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Chavy Silverado 3500HD 0 201 3190 351 2023-02-21T08:07:00Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Chavy Silverado 3500HD |image=Silverado_3500HD_Front.jpg |make=Chavy |type=Pickup |price=$83,245 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 Chavy Silverado 3500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $83,245. ==Stats== The Silverado 3500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=8355|spdval=120|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=7855|spdval=182}} ==Gallery== <gallery> File:Silverado_3500HD_Rear.jpg|Rear view of the 2022 Chavy Silverado 3500HD. </gallery> a5fbf4a237c9fda462b3a1f6e663b45a8f4a0e52 3191 3190 2023-02-21T08:07:08Z S30Z 2 S30Z moved page [[2021 Chavy Silverado 3500HD]] to [[2022 Chavy Silverado 3500HD]] wikitext text/x-wiki {{Carinfo |name=2022 Chavy Silverado 3500HD |image=Silverado_3500HD_Front.jpg |make=Chavy |type=Pickup |price=$83,245 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Silverado#Fourth-generation_Silverado_/_fifth-generation_Sierra_(2019) |rlname=Chevrolet Silverado/GMC Sierra |limited=0 |electric=0 }} The 2022 Chavy Silverado 3500HD is a four door pickup truck produced by [[Chavy]]. It can be purchased from the dealership for $83,245. ==Stats== The Silverado 3500HD has 10 seats and a fuel capacity of 36 gallons. {{Stockstats|hpval=444|tqval=909|whval=8355|spdval=120|drv=AWD}} {{Maxstats|hpval=1138|tqval=3007|whval=7855|spdval=182}} ==Gallery== <gallery> File:Silverado_3500HD_Rear.jpg|Rear view of the 2022 Chavy Silverado 3500HD. </gallery> a5fbf4a237c9fda462b3a1f6e663b45a8f4a0e52 2021 Chavy Silverado 3500HD 0 2140 3192 2023-02-21T08:07:08Z S30Z 2 S30Z moved page [[2021 Chavy Silverado 3500HD]] to [[2022 Chavy Silverado 3500HD]] wikitext text/x-wiki #REDIRECT [[2022 Chavy Silverado 3500HD]] e6a5abc46fd2cd36ee63b3a1abfb1136b8b3fa60 File:Silverado 3500HD Front.jpg 6 199 3193 349 2023-02-21T08:07:28Z S30Z 2 S30Z uploaded a new version of [[File:Silverado 3500HD Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Silverado 3500HD Rear.jpg 6 200 3194 350 2023-02-21T08:07:36Z S30Z 2 S30Z uploaded a new version of [[File:Silverado 3500HD Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Template:Randomcar 10 1774 3195 3132 2023-02-21T08:10:22Z S30Z 2 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2017 Aero Nomad Tactical |2= 1966 Alpha Giulia Sprint GTA |3= 2010 Alpha 8C Competizione |4= 2020 Alpha Stelvio Quadrifolgio |5= 2021 Alpha Giulia Quadrifolgio |6= 1982 AMC Delorean |7= 2011 Aristo M600 |8= 2011 Atone Mira V12 Vantage |9= 2011 Atone-Mira One-77 |10= 2018 Atone Mira DB11 |11= 2020 Atone Mira DBS Superleggera |12= 2021 Atone Mira Vantage |13= 2021 Atone-Mira DBX |14= 2022 Atone-Mira Valkyrie |15= 1998 Axura Integra Type R |16= 2017 Axura NSX |17= 2021 Axura RDX |18= 2022 Axura NSX Type S |19= 2019 Banthey Bentayga |20= 2020 Banthey Flying Spur |21= 2015 BMC Mono |22= 1985 BNW M 635CSi |23= 1987 BNW M3 |24= 1996 BNW M3 |25= 2004 BNW M3 |26= 2011 BNW 1M |27= 2013 BNW M3 |28= 2013 BNW M3 GTS |29= 2013 BNW M5 |30= 2018 BNW M2 |31= 2018 BNW M4 |32= 2019 BNW 530i |33= 2019 BNW M5 |34= 2020 BNW S1000RR |35= 2020 BNW X7 |36= 2021 BNW M4 Competition |37= 2021 BNW X6M |38= 2021 BNW Z4 |39= 2022 BNW iX |40= 2023 BNW M2 |41= 2023 BNW M240i |42= 1987 Brick Grand National GNX |43= 2011 Bulatti Veyron Super Sport |44= 2017 Bulatti Chiron |45= 2022 Bulatti Chiron Super Sport 300+ |46= 2013 Cadillic CTS-V |47= 2013 Cadillic CTS-V Coupe |48= 2013 Cadillic CTS-V Wagon |49= 2021 Cadillic Escalade |50= 2022 Cadillic CT5-V Blackwing |51= 1967 Chavy Corvette Sting Ray |52= 1969 Chavy Camaro RS/SS |53= 1970 Chavy Nova SS |54= 1993 Chavy Silverado 454 SS |55= 2012 Chavy Camaro ZL1 |56= 2013 Chavy Corvette ZR1 |57= 2015 Chavy Camaro Z/28 |58= 2015 Chavy Cruze |59= 2016 Chavy SS |60= 2018 Chavy Camaro ZL1 "The Exorcist" |61= 2018 Chavy Camaro ZL1 1LE |62= 2019 Chavy Corvette Z06 |63= 2020 Chavy Suburban RST |64= 2020 Chavy Tahoe |65= 2020 Chavy Tahoe PPV |66= 2020 Chavy Tahoe PPV Undercover |67= 2021 Chavy Camaro 2SS |68= 2022 Chavy Corvette |69= 2022 Chavy Silverado 2500HD |70= 2022 Chavy Silverado 3500HD |71= 2023 Chavy Corvette Z06 |72= 2023 Chavy Corvette Z06 Z07 Package |73= 2019 Chrystal Pacifica |74= 2016 Conquest Bonneville T120 |75= 2021 Conquest Street Triple RS |76= 2010 CSS Ultimate Aero |77= 2013 CTM X-Bow R |78= 2019 CTM 1290 Superduke |79= 2015 Dacati 899 Panigale |80= 1987 DeTomato Pantera GT5-S |81= 1969 Dodje Daytona |82= 1970 Dodje Charger R/T |83= 1971 Dodje Challenger R/T |84= 1998 Dodje Viper GTS |85= 2006 Dodje Ram SRT-10 |86= 2008 Dodje Grand Caravan |87= 2010 Dodje Viper SRT-10 |88= 2010 Dodje Viper SRT-10 ACR-X |89= 2013 Dodje Dart GT |90= 2017 Dodje Viper ACR Extreme |91= 2017 Dodje Viper SRT |92= 2018 Dodje Challenger Badcat |93= 2018 Dodje Challenger Demon |94= 2020 Dodje Charger Badcat |95= 2020 Dodje Charger Badcat Daytona |96= 2020 Dodje Charger Badcat Pursuit |97= 2020 Dodje Charger Badcat Pursuit Undercover |98= 2020 Dodje Charger Badcat Widebody |99= 2020 Dodje Charger Pursuit |100= 2020 Dodje Charger Pursuit Undercover |101= 2020 Dodje Ram Rebel |102= 2021 Dodje Durango SRT Badcat |103= 2021 Dodje RAM TRX |104= 2022 Dodje Challenger Badcat Redeye Widebody |105= 2022 Dodje Challenger Scatpack Widebody |106= 2011 Edison Roadster Sport 2.5 |107= 2020 Edison Cybertruck |108= 2020 Edison Model 3 |109= 2020 Edison Model X |110= 2020 Edison Model Y |111= 2021 Edison Model S |112= 2021 Edison Roadster |113= 2011 Endless G37 EPL |114= 2013 Esperanza GTA Spano |115= 2016 Ethanol Venom GT |116= 2021 Ethanol Venom F5 |117= 1956 Fard F-100 |118= 1969 Fard Mustang Boss 427 |119= 1986 Fard RS200 Evolution |120= 1993 Fard Mustang GT LX |121= 1993 Fard Mustang SVT Cobra R |122= 1995 Fard SVT F-150 Lightning |123= 1999 Fard SVT F-150 Lightning |124= 2000 Fard Mustang SVT Cobra R |125= 2004 Fard Mustang SVT Cobra |126= 2005 Fard GT |127= 2005 Fard Mustang GT |128= 2011 Fard Crown Victoria |129= 2011 Fard Crown Victoria Police Interceptor |130= 2011 Fard Crown Victoria Police Interceptor Sheriff |131= 2011 Fard Crown Victoria Police Interceptor Undercover |132= 2013 Fard Mustang GT |133= 2013 Fard Mustang GT Convertible |134= 2013 Fard Mustang GT500 Super Snake |135= 2014 Fard Fiesta ST |136= 2016 Fard Police Interceptor Sedan Sheriff |137= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |138= 2016 Fard Taurus |139= 2017 Fard Mustang GT350R |140= 2018 Fard Focus RS |141= 2019 Fard Police Responder Undercover |142= 2019 Fard Ranger |143= 2019 Fard Ranger CSA |144= 2019 Fard Ranger CSU |145= 2020 Fard Explorer |146= 2020 Fard F-450 Fast Response Unit |147= 2020 Fard F150 |148= 2020 Fard F150 Police Responder |149= 2020 Fard Fusion |150= 2020 Fard GT |151= 2021 Fard Expedition |152= 2021 Fard F-250 Superduty |153= 2021 Fard F-450 Superduty |154= 2021 Fard Mustang GT Unmarked |155= 2021 Fard Mustang GT500 Code Red |156= 2021 Fard Police Interceptor Utility |157= 2021 Fard Police Interceptor Utility Sheriff |158= 2021 Fard Police Interceptor Utility Undercover |159= 2021 Fard Police Interceptor Utility Unmarked Sheriff |160= 2022 Fard Bronco 2 Door |161= 2022 Fard Bronco 4-Door |162= 2022 Fard Bronco TRT |163= 2022 Fard F-450 Ambulance |164= 2022 Fard Maverick Lariat |165= 2022 Fard Mustang GT |166= 2022 Fard Mustang TRT Spec 3 |167= 2022 Fard Mustang TRT Spec 5 |168= 1963 Furai 250 GTO |169= 1984 Furai Testarossa |170= 1992 Furai F40 |171= 2014 Furai LaFurai |172= 2015 Furai 458 Italia |173= 2016 Furai F12 |174= 2019 Furai 488 Pista |175= 2019 Furai Portofino |176= 2021 Furai F8 Tributo |177= 2022 Furai SF90 Stradale |178= 1991 GEC Syclone |179= 2020 GEC Sierra 1500 |180= 2021 GEC Yukon |181= 2022 GEC Sierra 2500HD AT4 |182= 2022 GEC Sierra 3500HD |183= 2020 Genesys G70 |184= 2009 Hammer H3 |185= 2009 Hammer H3 Limousine |186= 2021 Hammer EV |187= 1990 Handa VFR750R RC30 |188= 1992 Handa NR750 |189= 1995 Handa Civic Si |190= 1995 Handa NSX |191= 1998 Handa Civic Type R |192= 2000 Handa Civic Si |193= 2005 Handa Integra Type R |194= 2009 Handa S2000 |195= 2011 Handa CR-Z |196= 2018 Handa Civic Type R |197= 2018 Handa CRF1100L |198= 2020 Handa Civic Coupe |199= 2020 Handa Passport |200= 2021 Handa Accord |201= 2021 Handa Odyssey |202= 2022 Handa Civic Hatchback |203= 2023 Handa Civic Type R |204= 2021 Hardley-Movinson Street Rod |205= 2015 Hayunai Genesis Coupe |206= 2019 Hayunai Veloster N |207= 2021 Hayunai Sonata Hybrid |208= 2021 Hayunai Sonata N-Line |209= 2022 Hayunai Ioniq 5 |210= 1990 Hibiscus Carlton |211= 2000 Hibiscus 340R |212= 2011 Hibiscus Evora S |213= 2019 Hibiscus 3-Eleven |214= 2017 Hoosqvarna 701 Supermoto |215= Intercontinental Durastar Heavy Duty Pumper |216= 2020 Jeff Gladiator |217= 2020 Jeff Trackhawk |218= 2020 Jeff Wrangler |219= 2020 Jeff Wrangler 4-Door |220= 1989 Kawisake ZXR750 |221= 1996 Kawisake Ninja ZX-7RR |222= 2019 Kawisake Ninja H2 |223= 2019 Kawisake ZX-10R SE |224= 2022 Keya Stinger GT2 |225= 2014 Koneggsaga Agera R |226= 2015 Koneggsaga One:1 |227= 1986 Lamburghina Countach 5000 QV |228= 2003 Lamburghina Murcielago Roadster |229= 2008 Lamburghina Gallardo |230= 2009 Lamburghina Reventon Roadster |231= 2010 Lamburghina Murcielago SV |232= 2011 Lamburghina Aventador |233= 2011 Lamburghina Gallardo Superleggera |234= 2018 Lamburghina Huracan Performante |235= 2019 Lamburghina Aventador SVJ |236= 2020 Lamburghina Huracan EVO |237= 2020 Lamburghina Huracan EVO Spyder |238= 2020 Lamburghina Huracan STO |239= 2020 Lamburghina Urus |240= 2022 Lamburghina Countach |241= 1974 Lancer Stratos HF Stradale |242= 2013 Lateraam Seven 620R |243= 2010 LUF CTR-3 |244= 2012 LUF CTR-3 Clubsport |245= 2022 Lunare Intensa Emozione |246= 2011 Luxuss LFA |247= 2020 Luxuss LS500 |248= 2020 Luxuss RC-F |249= 2021 Luxuss LC500 |250= 1989 Mazday RX-7 Turbo II |251= 1990 Mazday Miata |252= 2002 Mazday RX-7 Sprint-R |253= 2011 Mazday RX-8 |254= 2021 Mazday3 |255= 2005 Mazeri MC-12 |256= 2011 Mazeri Quattroporte GTS |257= 2012 Mazeri GranTurismo MC |258= 1998 McFaren F1 |259= 2015 McFaren 675LT |260= 2015 McFaren P1 |261= 2016 McFaren 650S |262= 2016 McFaren 650S Spider |263= 2017 McFaren 570GT |264= 2020 McFaren 600LT |265= 2020 McFaren GT |266= 2020 McFaren Senna |267= 2020 McFaren Speedtail |268= 2022 McFaren 765LT |269= 1996 Mitsabisha Lancer Evolution GSR |270= 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition |271= 2005 Mitsabisha Lancer Evolution |272= 2014 Mitsabisha Lancer Evolution |273= 2005 Montiac GTO |274= 1990 Muaraci-Bens 190E 2.5-16 Evolution II |275= 2008 Muaraci-Bens CLK63 AGM |276= 2009 Muaraci-Bens SL65 AGM Black Series |277= 2013 Muaraci-Bens SLS AGM Black Series |278= 2018 Muaraci-AGM E63 S |279= 2018 Muaraci-AGM GT R |280= 2019 Muaraci-Bens AGM S-Class Coupe |281= 2019 Muaraci-Bens AGM S-Class Sedan |282= 2019 Muaraci-Maibach Pullman |283= 2020 Muaraci-AGM GT-63s |284= 2021 Muaraci-Bens AGM GT Black Series |285= 2021 Muaraci-Bens G550 |286= 1972 Naan Skyline 2000GT-R |287= 1973 Naan Skyline 2000GT-R |288= 1990 Naan Silvia K's |289= 1991 Naan 180SX |290= 1992 Naan Skyline R32 GTR |291= 1995 Naan 300ZX TT |292= 1995 Naan Skyline R33 GTR |293= 1997 Naan 240SX |294= 2002 Naan Silvia S15 |295= 2002 Naan Skyline R34 GT-R V-Spec II Nür |296= 2005 Naan R34 GT-R Z-Tune |297= 2008 Naan Altima |298= 2009 Naan 350Z |299= 2009 Naan 350Z Nizmo |300= 2017 Naan 370Z |301= 2017 Naan 370Z Nizmo |302= 2021 Naan R35 GTR |303= 2022 Naan Versa |304= 2023 Naan Z Performance |305= 2008 Owdi R8 |306= 2018 Owdi SQ7 |307= 2019 Owdi A6 |308= 2019 Owdi TT-RS |309= 2020 Owdi A7 Sportback |310= 2021 Owdi R8 V10 |311= 2021 Owdi RS5 |312= 2022 Owdi E-Tron GT RS |313= 2022 Owdi RS 3 Sportback |314= 2022 Owdi RS6 Avant |315= 2018 Paijani Huayra |316= 1970 Plywood Roadrunner Superbird |317= 1987 Pohrse 911 Turbo |318= 1987 Pohrse 930 Turbo Slantnose |319= 1991 Pohrse 944 |320= 2012 Pohrse 911 GT2 RS |321= 2015 Pohrse 918 Spyder Roadster |322= 2015 Pohrse 918 Weissach Package |323= 2017 Pohrse 911 GT2 RS |324= 2018 Pohrse 911 GT3 |325= 2018 Pohrse 911 GT3RS |326= 2020 Pohrse 911 Carrera 4S |327= 2020 Pohrse Cayenne Coupe |328= 2021 Pohrse 718 Boxster T |329= 2021 Pohrse 718 Cayman GT4 |330= 2021 Pohrse 718 Cayman GTS 4.0 |331= 2022 Pohrse 911 GT3 |332= 2022 Pohrse 911 GT3 Touring |333= 2022 Pohrse 911 Targa 4S |334= 2022 Pohrse Taycan Turbo S |335= 2023 Pohrse 718 Cayman GT4 RS |336= 2023 Pohrse 911 GT3 RS |337= 2023 Pohrse 911 Turbo S |338= 2016 Range Runner Sport |339= 2020 Range Runner Evoque |340= 2020 Range Runner Velar |341= 2018 Rolls Rayce Cullinan |342= 2019 Rolls Rayce Wraith |343= 2021 Rolls Rayce Ghost |344= 1999 Saaburu WRX STi 22B |345= 2017 Saaburu WRX STI |346= 2020 Saaburu Forester |347= 2007 Salane S7 |348= 1989 Sozooki GSX-R 750RR |349= 2015 Sozooki Hayabusa |350= 2021 Stinger ACS |351= Stuphen Monarch Heavy Rescue Truck |352= 1988 Toyoto 4Runner |353= 2000 Toyoto Supra |354= 2001 Toyoto MR2 |355= 2014 Toyoto FJ Cruiser |356= 2018 Toyoto Tacoma |357= 2019 Toyoto 4Runner TRD-Pro |358= 2019 Toyoto GT86 |359= 2020 Toyoto Avalon TRD |360= 2020 Toyoto Avalon XLE |361= 2020 Toyoto Camry |362= 2020 Toyoto Camry TRD |363= 2020 Toyoto Corolla |364= 2021 Toyoto Prius Prime |365= 2021 Toyoto Supra |366= 2022 Toyoto Tundra TRD-Pro |367= 2023 Toyoto GR Corolla |368= 2023 Toyoto GR Corolla Circuit Edition |369= 2023 Toyoto GR Corolla Morizo Edition |370= 2023 Toyoto Sequoia TRD-Pro |371= 1963 Volkinsen Beetle |372= 1969 Volkinsen Vanagon |373= 2018 Volkinsen Atlas |374= 2021 Volkinsen Golf GTI |375= 2021 Volkinsen Jetta |376= 2008 Vovol C30 T5 |377= 2016 Vovol XC90 T6 R-Design |378= 2022 Vovol C40 Recharge |379= 2010 Xynvo ST1 |380= 2015 Yamiiha FZ-07 |381= 2020 Yamiiha YZF-R1 | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> e216a7510a77b1a1bf533265a51b9fc949789103 File:R35FR Front.jpg 6 2141 3196 2023-02-21T08:14:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:R35FR Rear.jpg 6 2142 3197 2023-02-21T08:14:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Naan R35 GTR 0 758 3198 3094 2023-02-21T08:15:08Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) File:R35FR_Front.jpg|Freedom Run (Liberty Walk Silhouette) File:R35FR_Rear.jpg|Freedom Run (Liberty Walk Silhouette) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> d74644a7e60a415dda86597729ddfce524784aa2 File:370Z AM Front.jpg 6 2143 3199 2023-02-21T08:23:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370Z AM Rear.jpg 6 2144 3200 2023-02-21T08:23:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370Z AG Front.jpg 6 2145 3201 2023-02-21T08:23:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370Z AG Rear.jpg 6 2146 3202 2023-02-21T08:23:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370Z IN Front.jpg 6 2147 3203 2023-02-21T08:23:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:370Z IN Rear.jpg 6 2148 3204 2023-02-21T08:24:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2017 Naan 370Z 0 979 3205 1547 2023-02-21T08:24:25Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2017 Naan 370Z|image=370z_front.jpg|make=Naan|type=Coupe|price=$32,998|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Nissan_370Z#2013_model_year_update_(2012–2020)|rlname=Nissan 370Z (Z34)|limited=0|electric=0}} The 2017 Naan 370Z is two-seater sportscar manufactured by [[Naan]]. It is the successor to the [[2009 Naan 350Z|Naan 350Z]]. It can be purchased from the dealership for $32,998. == Stats == The 370Z has two seats and a maximum fuel capacity of 19 gallons. {{Stockstats|hpval=323|tqval=270|whval=3,298|spdval=155|drv=RWD}}{{Maxstats|hpval=1,248|tqval=1,122|whval=2,798|spdval=207}} {{Bodykits}} <gallery> File:370Z_AM_Front.jpg|Amuzement (Amuse) File:370Z_AM_Rear.jpg|Amuzement (Amuse) File:370Z_AG_Front.jpg|Avoidless (Aimgain) File:370Z_AG_Rear.jpg|Avoidless (Aimgain) File:370Z_IN_Front.jpg|Ends (Ings) File:370Z_IN_Rear.jpg|Ends (Ings) </gallery> == Gallery == <gallery> File:370z rear.jpg|The rear view of the 370Z. </gallery> 4903da34bca4e6c5229e791b8647892e75c0d2cb File:VIPwheel32.jpg 6 2149 3206 2023-02-22T01:25:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel31.jpg 6 2150 3207 2023-02-22T01:25:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel30.jpg 6 2151 3208 2023-02-22T01:26:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel29.jpg 6 2152 3209 2023-02-22T01:26:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel28.jpg 6 2153 3210 2023-02-22T01:26:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel27.jpg 6 2154 3211 2023-02-22T01:27:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel26.jpg 6 2155 3212 2023-02-22T01:27:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel25.jpg 6 2156 3213 2023-02-22T01:27:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel24.jpg 6 2157 3214 2023-02-22T01:27:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel23.jpg 6 2158 3215 2023-02-22T01:27:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel22.jpg 6 2159 3216 2023-02-22T01:28:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel21.jpg 6 2160 3217 2023-02-22T01:28:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel20.jpg 6 2161 3218 2023-02-22T01:28:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel19.jpg 6 2162 3219 2023-02-22T01:28:26Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel18.jpg 6 2163 3220 2023-02-22T01:28:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel17.jpg 6 2164 3221 2023-02-22T01:28:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel16.jpg 6 2165 3222 2023-02-22T01:28:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel15.jpg 6 2166 3223 2023-02-22T01:28:53Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel14.jpg 6 2167 3224 2023-02-22T01:29:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel13.jpg 6 2168 3225 2023-02-22T01:29:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel12.jpg 6 1852 3226 2774 2023-02-22T01:38:27Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel12.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel11.jpg 6 1851 3227 2773 2023-02-22T01:39:07Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel11.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel10.jpg 6 1850 3228 2772 2023-02-22T01:39:19Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel10.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel9.jpg 6 1849 3229 2771 2023-02-22T01:39:28Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel9.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel8.jpg 6 1848 3230 2770 2023-02-22T01:39:36Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel8.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel7.jpg 6 1847 3231 2769 2023-02-22T01:39:46Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel7.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel6.jpg 6 1846 3232 2768 2023-02-22T01:39:57Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel6.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel5.jpg 6 1845 3233 2767 2023-02-22T01:40:08Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel5.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel4.jpg 6 1844 3234 2766 2023-02-22T01:40:19Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel4.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel3.jpg 6 1843 3235 2765 2023-02-22T01:40:29Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel3.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel2.jpg 6 1842 3236 2764 2023-02-22T01:40:42Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel2.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel1.jpg 6 1841 3237 2763 2023-02-22T01:40:51Z S30Z 2 S30Z uploaded a new version of [[File:VIPwheel1.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel40.jpg 6 2169 3238 2023-02-22T01:41:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel39.jpg 6 2170 3239 2023-02-22T01:41:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel38.jpg 6 2171 3240 2023-02-22T01:41:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel37.jpg 6 2172 3241 2023-02-22T01:41:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel36.jpg 6 2173 3242 2023-02-22T01:41:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel35.jpg 6 2174 3243 2023-02-22T01:41:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel34.jpg 6 2175 3244 2023-02-22T01:41:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:VIPwheel33.jpg 6 2176 3245 2023-02-22T01:42:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Tuning 0 1685 3246 2912 2023-02-22T01:42:59Z S30Z 2 /* VIP */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$2,120 - Work Emotion T7R File:Stancewheel2.jpg|$3,120 - Work VS-KF File:Stancewheel3.jpg|$3,672 - Work Meister S1 3P File:Stancewheel4.jpg|$3,120 - Volk TE37 File:Stancewheel5.jpg|$1,799 - SSR Koenig File:Stancewheel6.jpg|$10,300 - HRE 309 FMR File:Stancewheel7.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel8.jpg|$6,620 File:Stancewheel9.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel10.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel11.jpg|$2,500 - Volk GT-C File:Stancewheel12.jpg|$2,515 - Volk TE37SL File:Stancewheel13.jpg|$15,996 - Blitz Type-03 File:Stancewheel14.jpg|$3,120 - Volk TE37 File:Stancewheel15.jpg|$5,500 - Advan AVS Model T5 </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] 513c934f2640389df777de9ad380c535f05220b1 Easter Eggs 0 1233 3247 2990 2023-02-22T01:46:54Z S30Z 2 /* The Labyrinth */ wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players can get to the backroom through the doors in the back corner of the produce and dairy section in Bublix. The backroom is completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes can be found. Odie and Jon can also be seen lying behind Garfield. Once a player has entered the backroom, the only way back out is to reset. Near Halloween of 2022, Raft18 escaped from the backroom. As of the Halloween 2022 update, the backroom can no longer be accessed. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == The Labyrinth == Through the newly-opened doors that previously lead to the backroom, players can enter a hidden server room with a computer and a drainage pipe as seen in the backroom. The computer's monitors show static, with an image of Raft flickering on the primary monitor. Entering the drainage pipe will bring players to the labyrinth. Raft will chase the player through the labyrinth, and if he touches the player, the player will die. Once a player finds their way out, they will be rewarded with the [[2021 Fard Mustang GT500 Code Red]]. The labyrinth can no longer be accessed. <gallery> File:BackroomDoorOpen.jpg|Open backroom doors File:ServerRoomPc.jpg File:RaftMaze.jpg|Raft in the labyrinth File:DevNuke.jpg|CLASSIFIED OBJECT: DEV_NUKE File:LBozo.jpg|"L bozo" sign found in a dead end File:BigFarter1.jpg|big farter File:BigFarter2.jpg File:CodeRed.jpg|The [[2021 Fard Mustang GT500 Code Red|Code Red]] awaiting the player File:CodeRedGui.jpg|Message that appears after obtaining the Code Red </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> d80237a5d3950f3943623d43f86127cf456b7155 File:Stancewheel48.jpg 6 2177 3248 2023-02-22T04:15:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel47.jpg 6 2178 3249 2023-02-22T04:15:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel46.jpg 6 2179 3250 2023-02-22T04:15:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel45.jpg 6 2180 3251 2023-02-22T04:15:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel44.jpg 6 2181 3252 2023-02-22T04:16:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel43.jpg 6 2182 3253 2023-02-22T04:16:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel42.jpg 6 2183 3254 2023-02-22T04:16:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel41.jpg 6 2184 3255 2023-02-22T04:16:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel40.jpg 6 2185 3256 2023-02-22T04:16:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel39.jpg 6 2186 3257 2023-02-22T04:17:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel38.jpg 6 2187 3258 2023-02-22T04:17:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel37.jpg 6 2188 3259 2023-02-22T04:17:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel36.jpg 6 2189 3260 2023-02-22T04:17:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel35.jpg 6 2190 3261 2023-02-22T04:18:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel34.jpg 6 2191 3262 2023-02-22T04:18:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel33.jpg 6 2192 3263 2023-02-22T04:18:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel32.jpg 6 2193 3264 2023-02-22T04:19:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel31.jpg 6 2194 3265 2023-02-22T04:19:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel30.jpg 6 2195 3266 2023-02-22T04:20:02Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel28.jpg 6 2196 3267 2023-02-22T04:21:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel27.jpg 6 2197 3268 2023-02-22T04:21:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel26.jpg 6 2198 3269 2023-02-22T04:21:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel25.jpg 6 2199 3270 2023-02-22T04:21:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel24.jpg 6 2200 3271 2023-02-22T04:21:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel23.jpg 6 2201 3272 2023-02-22T04:21:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel22.jpg 6 2202 3273 2023-02-22T04:22:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel21.jpg 6 2203 3274 2023-02-22T04:22:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel20.jpg 6 2204 3275 2023-02-22T04:22:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel19.jpg 6 2205 3276 2023-02-22T04:22:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel18.jpg 6 2206 3277 2023-02-22T04:22:43Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel17.jpg 6 2207 3278 2023-02-22T04:22:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel16.jpg 6 2208 3279 2023-02-22T04:22:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel15.jpg 6 1886 3280 2813 2023-02-22T04:23:05Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel15.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel14.jpg 6 1887 3281 2814 2023-02-22T04:23:15Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel14.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel13.jpg 6 1888 3282 2815 2023-02-22T04:23:28Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel13.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel12.jpg 6 1885 3283 2812 2023-02-22T04:23:46Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel12.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel11.jpg 6 1889 3284 2816 2023-02-22T04:23:54Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel11.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel10.jpg 6 1890 3285 2817 2023-02-22T04:24:05Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel10.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel9.jpg 6 1891 3286 2818 2023-02-22T04:24:19Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel9.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel8.jpg 6 1892 3287 2819 2023-02-22T04:24:28Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel8.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel7.jpg 6 1893 3288 2820 2023-02-22T04:24:48Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel7.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel6.jpg 6 1894 3289 2821 2023-02-22T04:25:04Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel6.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel5.jpg 6 1895 3290 2822 2023-02-22T04:26:27Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel5.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel4.jpg 6 1896 3291 2823 2023-02-22T04:26:39Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel4.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel3.jpg 6 1897 3292 2824 2023-02-22T04:26:48Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel3.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel2.jpg 6 1898 3293 2825 2023-02-22T04:27:01Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel2.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Stancewheel1.jpg 6 1899 3294 2826 2023-02-22T04:27:09Z S30Z 2 S30Z uploaded a new version of [[File:Stancewheel1.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Tuning 0 1685 3295 3246 2023-02-22T04:27:48Z S30Z 2 /* Stance */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] 06d42c11dbdb8861d53cccc5b3837de84cf0d15d File:Stancewheel29.jpg 6 2209 3296 2023-02-22T04:28:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bubmart1.jpg 6 2210 3297 2023-02-23T21:57:23Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Bubmart2.jpg 6 2211 3298 2023-02-23T21:57:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Bubmart Employee 0 310 3299 2052 2023-02-23T21:57:52Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Bubmart Employee job requires staying inside Bubmart in order to make money and level up. Bubmart employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Serve citizens with their food and grocery needs |rank1=Stock Clerk |rank1pay=$250 |rank2=Retail Clerk |rank2pay=$375 |rank3=Team Leader |rank3pay=$625 |rank4=Assistant Department Manager |rank4pay=$1025 |rank5=Department Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Bubmart is located near [[Vorzen Employee#Location|Vorzen]] and [[Automart Employee#Location|Automart]]. <gallery> File:Bubmart1.jpg File:Bubmart2.jpg </gallery> == Items that can be purchased at Bubmart == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} 1a77c20d981516bf1210c30228704f38f8b42969 3300 3299 2023-02-23T21:58:03Z S30Z 2 S30Z moved page [[Bublix Employee]] to [[Bubmart Employee]] wikitext text/x-wiki {{Jobinfo5 |desc=The Bubmart Employee job requires staying inside Bubmart in order to make money and level up. Bubmart employees can also sell groceries to other players, though they will not make money from doing so. |resp= *Serve citizens with their food and grocery needs |rank1=Stock Clerk |rank1pay=$250 |rank2=Retail Clerk |rank2pay=$375 |rank3=Team Leader |rank3pay=$625 |rank4=Assistant Department Manager |rank4pay=$1025 |rank5=Department Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Bubmart is located near [[Vorzen Employee#Location|Vorzen]] and [[Automart Employee#Location|Automart]]. <gallery> File:Bubmart1.jpg File:Bubmart2.jpg </gallery> == Items that can be purchased at Bubmart == {| class="wikitable" |- ! Item !! Cost |- | Groceries || $30 |} 1a77c20d981516bf1210c30228704f38f8b42969 Bublix Employee 0 2212 3301 2023-02-23T21:58:03Z S30Z 2 S30Z moved page [[Bublix Employee]] to [[Bubmart Employee]] wikitext text/x-wiki #REDIRECT [[Bubmart Employee]] 4b841760bee2e0da75a69333ba6249a04c1a7ec5 Bubmart 0 1614 3302 2287 2023-02-23T21:58:26Z S30Z 2 S30Z moved page [[Bublix]] to [[Bubmart]] wikitext text/x-wiki #REDIRECT [[Bublix Employee#Location]] [[Category:Locations]] 103d160ea157e14ab3b7f4b9b0bc1b516c1256b2 3304 3302 2023-02-23T21:58:58Z S30Z 2 Changed redirect target from [[Bublix Employee#Location]] to [[Bubmart Employee#Location]] wikitext text/x-wiki #REDIRECT [[Bubmart Employee#Location]] [[Category:Locations]] 454995f3e6c077563e8fac51501270bbe58e30d4 Bublix 0 2213 3303 2023-02-23T21:58:26Z S30Z 2 S30Z moved page [[Bublix]] to [[Bubmart]] wikitext text/x-wiki #REDIRECT [[Bubmart]] 19339ad2640513bd337c64ddc6368790a2031798 Automart Employee 0 318 3305 2039 2023-02-23T21:59:47Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Automart Employee job requires staying inside Automart in order to make money and level up. |resp= *Advise and offer customers on quality auto parts |rank1=Stocker |rank1pay=$250 |rank2=Sales Associate |rank2pay=$375 |rank3=Shift Supervisor |rank3pay=$625 |rank4=Sales Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Automart is located near [[Bubmart Employee#Location|Bubmart]] and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. <gallery> File:Automart1.jpg File:Automart2.jpg </gallery> 7502ca118f200b6569b0ebfbb0a4dd3a434e702a Ammo refill boxes 0 1431 3306 2026 2023-02-23T22:00:15Z S30Z 2 wikitext text/x-wiki Ammo refill boxes allow [[Police|police officers]], [[Sheriff|sheriffs]] and [[Criminal|criminals]] to quickly refill their ammo by simply walking over them. <gallery> File:Ammobox1.jpg|Near the garbage cans at [[StudRac Employee#Location|Studrac 1]]. File:Ammobox2.jpg|By the garbage cans at [[McBloxxer's Employee#Location|McBloxxer's]]. File:Ammobox3.jpg|By the garbage can at [[Dippin' Donuts Employee#Location|Dippin' Donuts]]. File:Ammobox4.jpg|By the garbage cans at [[Cafe Worker#Location|Starblocks]]. File:Ammobox5.jpg|On the right corner of [[Bubmart Employee#Location|Bubmart]]. File:Ammobox6.jpg|In a bush next to a parked car at [[RW Bank Employee#Location|RW Bank]]. File:Ammobox7.jpg|By the lockers in the [[Police#Location|police station]]'s garage. </gallery> f1b1a51cd27bdf08733f45f8f2859ca59dc7683e Jeff's Pizza Employee 0 1405 3307 2034 2023-02-23T22:00:28Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Jeff's Pizza Employee job requires staying inside Jeff's Pizza in order to make money and level up. Jeff's Pizza employees can sell food and drinks to other players however they will not earn money from doing so. |resp= *Serve customers with drinks & pizza at a local chain |rank1=Cashier |rank1pay=$250 |rank2=Cook |rank2pay=$375 |rank3=Head Cook |rank3pay=$625 |rank4=Shift Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Jeff's Pizza is located just around the corner from [[Bubmart Employee#Location|Bubmart]]. <gallery> File:Jeffspizza.jpg File:Jeffspizzaint.jpg </gallery> == Items that can be purchased at Jeff's Pizza == {| class="wikitable" |- ! Item !! Cost |- | Water || $1 |- | Soda || $2 |- | Cheese Slice || $3 |- | Pepperoni Slice || $4 |- | Supreme Slice || $5 |} 29e68a84b6cd14e3b28a213b550b1b13251062dd Vorzen Employee 0 319 3308 2084 2023-02-23T22:00:45Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc=The Vorzen Employee job requires staying inside Vorzen in order to make money and level up. Vorzen employees can also sell [[smartphones]] to other players, though they will not make money from doing so. |resp= *Sell phones to players |rank1=Sales Associate |rank1pay=$250 |rank2=Customer Service Representative |rank2pay=$375 |rank3=Merchandiser |rank3pay=$625 |rank4=Associate Manager |rank4pay=$1025 |rank5=Store Manager |rank5pay=$1750}} == Location == ''Looking for ammo refill boxes? You can find them [[Ammo refill boxes|here.]]'' Vorzen is located near [[Bubmart Employee#Location|Bubmart]] and [[StudRac Employee#Location|Studrac 2]]. <gallery> File:Vorzen1.jpg File:Vorzen2.jpg </gallery> == Items that can be purchased at Vorzen == ''See [[jPhone]] for more information.'' {| class="wikitable" |- ! Item !! Cost |- | jPhone 12 || $829 |- | jPhone 12 Pro Max || $1,199 |- | jPhone 12 Pro Max Gold || $50,000 |- | jPhone 12 Pro Max Platinum || $75,000 |} c00b0daa5a56d2b6785f8b25d1db1c8ef5a9099e Criminal 0 292 3309 2008 2023-02-23T22:01:15Z S30Z 2 wikitext text/x-wiki {{Jobinfo5 |desc= The Criminal job requires robbing businesses in order to make money and level up. Some businesses can only be robbed once a certain rank has been acheived. Criminals can also participate in PVP combat with police officers and sheriffs, ONLY if both have PVP enabled. PVP is automatically enabled for criminals upon starting a robbery or entering the scene of an active robbery. Criminals are equipped with an M9, and can also use an AK47 and a shotgun if they purchase the necessary gamepasses. See [[Weapons]] for more info. Unlike any other job, criminals have multiple spawns scattered across Southwest Florida. A criminal's income depends on their rank and what locations they rob. |resp= *Rob businesses and banks around the city *Earn more money from robberies and unlock more areas to rob as you rank up. |rank1=Thief |rank1pay=N/A |rank2=Grunt |rank2pay=N/A |rank3=Ring Leader |rank3pay=N/A |rank4=Felon |rank4pay=N/A |rank5=Crimelord |rank5pay=N/A}} ==Businesses that can be robbed by criminals== {| class="wikitable" !Business !Rank Required !What can be robbed !Time taken !Cooldown |- |[[McBloxxer's Employee#Location|McBloxxer's]] |Thief |3 cash registers |80s per register |300s (5m) per register |- |[[StudRac Employee#Location|StudRac (Location 1)]] |Thief |2 cash registers |80s per register |300s (5m) per register |- |[[CVC Pharmacy Employee#Location|CVC Pharmacy]] |Grunt |2 cash registers |80s per register |300s (5m) per register |- |[[Jeff's Pizza Employee#Location|Jeff's Pizza]] |Grunt |2 cash registers |80s per register |300s (5m) per register |- |[[Bubmart Employee#Location|Bubmart]] |Ring Leader |7 cash registers |80s per register |300s (5m) per register |- |[[Cafe Worker#Location|Starblocks]] |Felon |2 cash registers |80s per register |300s (5m) per register |- |[[Dippin' Donuts Employee#Location|Dippin' Donuts]] |Felon |2 cash registers |80s per register |300s (5m) per register |- |[[RW Bank Employee#Location|R.W. Bank]] |Crimelord |Bank vault |300s (5m) |2000s (33m) |} 6e6f3cde8baa25ac5dcffbc8029198cd5c649860 Easter Eggs 0 1233 3310 3247 2023-02-23T22:03:00Z S30Z 2 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players could get to the backroom through the doors in the back corner of the produce and dairy section in Bubmart. The backroom was completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes could be found. Odie and Jon could also be seen lying behind Garfield. Once a player entered the backroom, the only way back out is to reset. Near Halloween of 2022, Raft18 escaped from the backroom. As of the Halloween 2022 update, the backroom can no longer be accessed. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == The Labyrinth == Through the newly-opened doors that previously lead to the backroom, players could enter a hidden server room with a computer and a drainage pipe as seen in the backroom. The computer's monitors showed static, with an image of Raft flickering on the primary monitor. Entering the drainage pipe would bring players to the labyrinth. Raft would chase the player through the labyrinth, and if he touches the player, the player would die. Once a player found their way out, they would be rewarded with the [[2021 Fard Mustang GT500 Code Red]]. The labyrinth can no longer be accessed. <gallery> File:BackroomDoorOpen.jpg|Open backroom doors File:ServerRoomPc.jpg File:RaftMaze.jpg|Raft in the labyrinth File:DevNuke.jpg|CLASSIFIED OBJECT: DEV_NUKE File:LBozo.jpg|"L bozo" sign found in a dead end File:BigFarter1.jpg|big farter File:BigFarter2.jpg File:CodeRed.jpg|The [[2021 Fard Mustang GT500 Code Red|Code Red]] awaiting the player File:CodeRedGui.jpg|Message that appears after obtaining the Code Red </gallery> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> ba2dca069cdc3181dd3351908f80b5a9e2b7745c Thanks 0 1802 3311 2706 2023-03-11T06:46:34Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in [[Help Wanted]] will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | [https://www.roblox.com/users/1015627424/profile @CRXYXSTAL]|| [[1982 AMC Delorean]] performance stats |} == Donators == Readers who have [[Contributing#Consider_donating_to_the_Strigid_Wiki_Team|donated]] to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Robux Donated |- | Example || 3 |} 0fe4870b85c7712171c3ce76e0781a5e42251539 1982 AMC Delorean 0 2000 3312 3005 2023-03-11T06:46:41Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=1982 AMC Delorean|image=Delorean_Front.jpg|make=AMC|type=Classic|price=Unknown|avail=Limited|rllink=https://en.wikipedia.org/wiki/DMC_DeLorean|rlname=DMC DeLorean|limited=1|electric=0}} The 1982 AMC Delorean is a coupe produced by [[AMC]]. It is a limited vehicle that was added on 9/24/2021. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== {{Stockstats|hpval=130|tqval=118|whval=2718|spdval=107|drv=RWD}} {{Maxstats|hpval=893|tqval=810|whval=2218|spdval=172}} ==Gallery== <gallery> File:Delorean_Rear.jpg|Rear view of the 1982 AMC Delorean. </gallery> b418e02f19e93f7c560468a57e9340c1f7933c63 Help Wanted 0 1399 3313 3030 2023-03-11T06:47:17Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] 2010 Aero Atom V8 2014 Mauraci-Bens G63 AGM 6x6 [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. f9ffa0032e9dc1fb9e5b17643f20ee4ac183a05f 2016 Range Runner Sport 0 1197 3314 1541 2023-04-25T19:43:13Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2016 Range Runner Sport |image=RRSport_Front.jpg |make=Range Runner |type=SUV |price=$72,350 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Range_Rover_Sport#Second_generation_(L494;_2013%E2%80%932022) |rlname=Land Rover Range Rover Sport (2nd gen.) |limited=0 |electric=0 }} The 2016 Range Runner Sport is a four door SUV produced by [[Range Runner]]. It can be purchased from the dealership for $72,350. ==Stats== The Range Runner Sport has 7 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=375|tqval=346|whval=5148|spdval=132|drv=AWD}} {{Maxstats|hpval=1058|tqval=1278|whval=4648|spdval=212}} ==Gallery== <gallery> File:RRSport_Rear.jpg|Rear view of the 2016 Range Runner Sport. </gallery> [[Category:Sucks]] 11cd4f0c3f2bc6400708143e05b58c30e0ac5605 2020 Pohrse Cayenne Coupe 0 1250 3315 1612 2023-04-25T19:43:28Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Pohrse Cayenne Coupe |image=CayenneCoupe_Front.jpg |make=Pohrse |type=SUV |price=$76,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Porsche_Cayenne#Third_generation_(2017) |rlname=Porsche Cayenne (3rd gen.) |limited=0 |electric=0 }} The 2020 Pohrse Cayenne Coupe is a four door SUV produced by [[Pohrse]]. It can be purchased from the dealership for $76,500. ==Stats== The Cayenne Coupe has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=326|tqval=326|whval=4475|spdval=147|drv=AWD}} {{Maxstats|hpval=1011|tqval=1217|whval=3975|spdval=243}} ==Gallery== <gallery> File:CayenneCoupe_Rear.jpg|Rear view of the 2020 Pohrse Cayenne Coupe. </gallery> [[Category:Sucks]] 66fcbd03112760244b61be45e93ae6d86af50ed2 2020 Handa Passport 0 1196 3316 1540 2023-04-25T19:43:36Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Handa Passport |image=Passport_Front.jpg |make=Handa |type=SUV |price=$43,780 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Passport#Third_generation_(YF7/8;_2019) |rlname=Honda Passport (3rd gen.) |limited=0 |electric=0 }} The 2020 Handa Passport is a four door SUV produced by [[Handa]]. It can be purchased from the dealership for $43,780. ==Stats== The Passport has 7 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=279|tqval=280|whval=4237|spdval=105|drv=AWD}} {{Maxstats|hpval=933|tqval=1352|whval=3737|spdval=197}} ==Gallery== <gallery> File:Passport_Rear.jpg|Rear view of the 2020 Handa Passport. </gallery> [[Category:Sucks]] 2a1a972b40b4ad6f19b1ddbbe1dfcda499773823 2021 Muaraci-Bens G550 0 1213 3317 1560 2023-04-25T19:43:55Z S30Z 2 wikitext text/x-wiki {{Carinfo|name=2021 Muaraci-Bens G550|image=g550_front.jpg|make=Muaraci-Bens|type=SUV|price=$130,900|avail=Can be purchased at the dealership.|rllink=https://en.wikipedia.org/wiki/Mercedes-Benz_G-Class#G-Class_W463,_second_generation_(2018–present)|rlname=Mercedes-Benz G550|limited=0|electric=0}} The 2021 Muaraci-Bens G550 is a luxury SUV manufactured by [[Muaraci-Bens]]. It can be purchased from the dealership for $130,900. == Stats == The G550 has 5 seats and a maximum fuel capacity of 25 gallons. {{Stockstats|hpval=416|tqval=510|whval=5,551|spdval=130|drv=AWD}}{{Maxstats|hpval=967|tqval=1,273|whval=5,051|spdval=194}} == Gallery == <gallery widths="300" heights="300"> File:G550 rear.jpg|The rear view of the G550. </gallery> [[Category:Sucks]] de788afee5424dfadedfd0dc6bb969eab480fd69 2018 Owdi SQ7 0 1284 3318 1691 2023-04-25T19:44:39Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2018 Owdi SQ7 |image=SQ7_Front.jpg |make=Owdi |type=SUV |price=$103,319 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Audi_Q7#Second_generation_(Typ_4M;_2015) |rlname=Audi SQ7 (2nd gen.) |limited=0 |electric=0 }} The 2018 Owdi SQ7 is a four door SUV produced by [[Owdi]]. It can be purchased from the dealership for $103,319. ==Stats== The SQ7 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=435|tqval=664|whval=3531|spdval=144|drv=AWD}} {{Maxstats|hpval=1073|tqval=1186|whval=3031|spdval=178}} ==Gallery== <gallery> File:SQ7_Rear.jpg|Rear view of the 2018 Owdi SQ7. </gallery> [[Category:Sucks]] 49c889df29e3f6a03fd55a6b85a351f685c63c1c 2021 Axura RDX 0 1246 3319 1608 2023-04-25T19:44:43Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Axura RDX |image=RDX_Front.jpg |make=Axura |type=SUV |price=$46,100 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Acura_RDX#Third_generation_(TC1/2;_2019) |rlname=Acura RDX (3rd gen.) |limited=0 |electric=0 }} The 2021 Axura RDX is a four door SUV produced by [[Axura]]. It can be purchased from the dealership for $46,100. ==Stats== The RDX has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=279|tqval=258|whval=4015|spdval=120|drv=AWD}} {{Maxstats|hpval=954|tqval=1405|whval=3515|spdval=198}} ==Gallery== <gallery> File:RDX_Rear.jpg|Rear view of the 2021 Axura RDX. </gallery> [[Category:Sucks]] 165a385fccf8cd0d6b90eddd2053bb3b03117db7 2020 BNW X7 0 1248 3320 1610 2023-04-25T19:44:47Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 BNW X7 |image=X7_Front.jpg |make=BNW |type=SUV |price=$73,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_X7 |rlname=BMW X7 |limited=0 |electric=0 }} The 2020 BNW X7 is a four door SUV produced by [[BNW]]. It can be purchased from the dealership for $73,900. ==Stats== The X7 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=336|tqval=366|whval=5115|spdval=128|drv=AWD}} {{Maxstats|hpval=1021|tqval=1540|whval=4615|spdval=217}} ==Gallery== <gallery> File:X7_Rear.jpg|Rear view of the 2020 BNW X7. </gallery> [[Category:Sucks]] 50d79526d2b97c46e13210c898b021c9efcb1bf5 2021 Cadillic Escalade 0 1283 3321 1690 2023-04-25T19:44:50Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2021 Cadillic Escalade |image=Escalade_Front.jpg |make=Cadillic |type=SUV |price=$76,195 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_Escalade#Fifth_generation_(2021) |rlname=Cadillac Escalade (5th gen.) |limited=0 |electric=0 }} The 2021 Cadillic Escalade is a four door SUV produced by [[Cadillic]]. It can be purchased from the dealership for $76,195. ==Stats== The Escalade has 7 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=420|tqval=460|whval=5578|spdval=116|drv=RWD}} {{Maxstats|hpval=1111|tqval=1440|whval=5078|spdval=179}} ==Gallery== <gallery> File:Escalade_Rear.jpg|Rear view of the 2021 Cadillic Escalade. </gallery> [[Category:Sucks]] 80b3b7195f0bc698d9f3b65a73ff1c2f3fc619fb Category:Sucks 14 2214 3322 2023-04-25T19:45:43Z S30Z 2 Created blank page wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3328 3322 2023-04-25T20:06:52Z S30Z 2 wikitext text/x-wiki models that need to be put out of their misery c35608be7951046326c94899c73a1167c9d76105 2022 Vovol C40 Recharge 0 1303 3323 1711 2023-04-25T19:46:46Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2022 Vovol C40 Recharge |image=C40_Front.jpg |make=Vovol |type=SUV |price=$59,845 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Volvo_C40 |rlname=Volvo C40 |limited=0 |electric=1 }} The 2022 Vovol C40 Recharge is a 4 door SUV produced by [[Vovol]]. It can be purchased from the dealership for $59,845. ==Stats== The C40 Recharge has 7 seats. As an electric vehicle, engine and transmission upgrades cannot be installed, and gearing cannot be adjusted. {{Stockstats|hpval=402|tqval=486|whval=4854|spdval=135|drv=AWD}} {{Maxstats|hpval=320|tqval=446|whval=4354|spdval=135}} ==Gallery== <gallery> File:C40_Rear.jpg|Rear view of the 2022 Vovol C40 Recharge. </gallery> [[Category:Sucks]] 598200de4233827bab8f134c8106cb21b8e0eeac 2020 Handa Civic Coupe 0 973 3324 1299 2023-04-25T19:52:41Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Handa Civic Coupe |image=CivicCoupe_Front.jpg |make=Handa |type=Coupe |price=$21,850 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Tenth_generation_(2015) |rlname=Honda Civic (10th gen.) |limited=0 |electric=0 }} The 2020 Handa Civic Coupe is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $21,850. ==Stats== The Civic Coupe has 4 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=205|tqval=228|whval=2888|spdval=139|drv=FWD}} {{Maxstats|hpval=795|tqval=867|whval=2388|spdval=176}} ==Gallery== <gallery> File:CivicCoupe_Rear.jpg|Rear view of the 2020 Handa Civic Coupe. </gallery> [[Category:Sucks]] 9caf123294a11f3c7d4ee74c18aa57fe2e99e119 2020 Genesys G70 0 604 3325 876 2023-04-25T19:55:57Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Genesys G70 |image=G70_Front.jpg |make=Genesys |type=Sedan |price=$51,530 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Genesis_G70 |rlname=Genesis G70 |limited=0 |electric=0 }} The 2020 Genesys G70 is a four door sedan produced by [[Genesys]]. It can be purchased from the dealership for $51,530. ==Stats== The G70 has 5 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=365|tqval=392|whval=3913|spdval=163|drv=AWD}} {{Maxstats|hpval=947|tqval=945|whval=3413|spdval=236}} ==Gallery== <gallery> File:G70_Rear.jpg|Rear view of the 2020 Genesys G70. </gallery> [[Category:Sucks]] 9d3b314344d701176861b626aed21de5a8235c81 2019 BNW 530i 0 643 3326 930 2023-04-25T19:56:47Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 BNW 530i |image=530i_Front.jpg |make=BNW |type=Sedan |price=$53,400 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/BMW_5_Series_(G30) |rlname=BMW 5 Series (7th gen.) |limited=0 |electric=0 }} The 2019 BNW 530i is a four door sedan produced by [[BNW]]. It can be purchased from the dealership for $53,400. ==Stats== The 530i has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=226|tqval=273|whval=3746|spdval=128|drv=RWD}} {{Maxstats|hpval=835|tqval=1031|whval=3246|spdval=215}} ==Gallery== <gallery> File:530i_Rear.jpg|Rear view of the 2019 BNW 530i. </gallery> [[Category:Sucks]] f1bd4cd1f74dd16a52add5a4ccf6888216fd85f7 2020 Luxuss LS500 0 640 3327 928 2023-04-25T19:57:46Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2020 Luxuss LS500 |image=LS500_Front.jpg |make=Luxuss |type=Sedan |price=$75,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Lexus_LS#Fifth_generation_(XF50;_2017) |rlname=Lexus LS (5th gen.) |limited=0 |electric=0 }} The 2020 Luxuss LS500 is a four door sedan produced by [[Luxuss]]. It can be purchased from the dealership for $75,450. ==Stats== The LS500 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=415|tqval=432|whval=4707|spdval=125|drv=AWD}} {{Maxstats|hpval=1016|tqval=1155|whval=4207|spdval=193}} ==Gallery== <gallery> File:LS500_Rear.jpg|Rear view of the 2020 Luxuss LS500. </gallery> [[Category:Sucks]] 313cee1e44e6baf1e442b67c650b37baf7df5f91 File:Strigid Logo.png 6 259 3329 1518 2023-05-07T03:49:30Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Logo.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3331 3329 2023-05-07T05:19:30Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Logo.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3332 3331 2023-05-07T05:28:40Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Logo.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Strigid Favicon.png 6 13 3330 86 2023-05-07T03:55:05Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Favicon.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3333 3330 2023-05-07T05:29:07Z S30Z 2 S30Z uploaded a new version of [[File:Strigid Favicon.png]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2014 Koneggsaga Agera R 0 384 3334 589 2023-05-19T23:39:31Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2014 Koneggsaga Agera R |image=Agera_Front.jpg |make=Koneggsaga |type=Hyper |price=$3,100,000 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Koenigsegg_Agera#Koenigsegg_Agera_R_%282011%E2%80%932014%29= |rlname=Koenigsegg Agera R |limited=0 |electric=0 }} The 2014 Koneggsaga Agera R is a hypercar produced by [[Koneggsaga]]. It could be purchased from the dealership for $3,100,000. ==Stats== The Agera has 2 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=1140|tqval=886|whval=3164|spdval=257|drv=RWD}} {{Maxstats|hpval=1648|tqval=1251|whval=2664|spdval=277}} ==Gallery== <gallery> File:Agera_Rear.jpg|Rear view of the 2014 Koneggsaga Agera R. File:Agera_Interior.jpg|Interior shot of the 2014 Koneggsaga Agera R. </gallery> 5a7ea47868a363c8e3fbfc1c43917d5a17caf632 2011 Bulatti Veyron Super Sport 0 374 3335 552 2023-05-19T23:43:28Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2011 Bulatti Veyron Super Sport |image=Veyron_Front.jpg |make=Bulatti |type=Hyper |price=$3,201,915 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Bugatti_Veyron#Bugatti_Veyron_16.4_Super_Sport,_World_Record_Edition_(2010%E2%80%932011) |rlname=Bugatti Veyron Super Sport |limited=0 |electric=0 }} The 2011 Bulatti Veyron Super Sport is a hypercar produced by [[Bulatti]]. It could be purchased from the dealership for $3,201,915. ==Stats== The Veyron has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=1184|tqval=1106|whval=4387|spdval=267|drv=AWD}} {{Maxstats|hpval=1696|tqval=1206|whval=3887|spdval=272}} ==Gallery== <gallery> File:Veyron_Rear.jpg|Rear view of the 2011 Bulatti Veyron Super Sport. </gallery> e3766157f6325d26d2d1f1dd0a43c741d7f78df7 2017 Bulatti Chiron 0 383 3336 588 2023-05-19T23:43:42Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2017 Bulatti Chiron |image=Chiron_Front.jpg |make=Bulatti |type=Hyper |price=$3,450,000 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Bugatti_Chiron |rlname=Bugatti Chiron |limited=0 |electric=0 }} The 2017 Bulatti Chiron is a hypercar produced by [[Bulatti]]. It could be purchased from the dealership for $3,450,000. ==Stats== The Chiron has 2 seats and a fuel capacity of 26 gallons. {{Stockstats|hpval=1479|tqval=1176|whval=4358|spdval=253|drv=AWD}} {{Maxstats|hpval=1984|tqval=1411|whval=3858|spdval=277}} ==Gallery== <gallery> File:Chiron_Rear.jpg|Rear view of the 2017 Bulatti Chiron. </gallery> 9d5e53a409109ad64c26186ce381b83c96183788 2019 Rolls Rayce Wraith 0 1005 3337 1336 2023-06-09T06:44:36Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2019 Rolls Rayce Wraith |image=Wraith_Front.jpg |make=Rolls Rayce |type=Coupe |price=$330,000 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Rolls-Royce_Wraith_(2013) |rlname=Rolls-Royce Wraith |limited=0 |electric=0 }} The 2019 Rolls Rayce Wraith is a two door coupe produced by [[Rolls Rayce]]. It can be purchased from the dealership for $330,000. ==Stats== The Wraith has 4 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=622|tqval=669|whval=5380|spdval=198|drv=RWD}} {{Maxstats|hpval=1193|tqval=1326|whval=4880|spdval=263}} ==Gallery== <gallery> File:Wraith_Rear.jpg|Rear view of the 2019 Rolls Rayce Wraith. </gallery> [[Category:Sucks]] fefe8772c229aa69366884d2ae7afe954974a0a7 File:23CTR Fork Front.jpg 6 2215 3338 2023-06-20T21:47:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:23CTR Fork Rear.jpg 6 2216 3339 2023-06-20T21:47:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Handa Civic Type R 0 2067 3340 3108 2023-06-20T21:48:46Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2023 Handa Civic Type R |image=23CTR_Front.jpg |make=Handa |type=Hatchback |price=$42,895 |avail=Can be purchased from the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_Type_R#FL5_(2022;_based_on_eleventh_generation_Civic) |rlname=Honda Civic Type R (FL5) |limited=0 |electric=0 }} The 2023 Handa Civic Type R is a 5-door hatchback produced by [[Handa]]. It can be purchased from the dealership for $42,895. ==Stats== The Civic Type R has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=315|tqval=310|whval=3188|spdval=171|drv=FWD}} {{Maxstats|hpval=1197|tqval=1136|whval=2653|spdval=201}} {{Bodykits}} <gallery> File:23CTR_Fork_Front.jpg|Fork (Spoon) File:23CTR_Fork_Rear.jpg|Fork (Spoon) </gallery> ==Gallery== <gallery> File:23CTR_Rear.jpg|Rear view of the 2023 Handa Civic Type R. </gallery> ee6f15f9648ad7a87dc5b64200f8af043cde492e File:EG6 Drag Front.jpg 6 2217 3341 2023-06-20T22:01:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Drag Rear.jpg 6 2218 3342 2023-06-20T22:01:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Fork Front.jpg 6 2219 3343 2023-06-20T22:01:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Fork Rear.jpg 6 2220 3344 2023-06-20T22:02:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Yugen Front.jpg 6 2221 3345 2023-06-20T22:02:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EG6 Yugen Rear.jpg 6 2222 3346 2023-06-20T22:02:41Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1995 Handa Civic Si 0 354 3347 528 2023-06-20T22:02:53Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1995 Handa Civic Si |image=EG6_Front.jpg |make=Handa |type=Hatchback |price=$2,450 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic#Fifth_generation_(1991) |rlname=Honda Civic (5th gen.) |limited=0 |electric=0 }} The 1995 Handa Civic Si is a three door hatchback produced by [[Handa]]. It can be purchased from the dealership for $2,450. ==Stats== The Civic Si has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=125|tqval=106|whval=2205|spdval=121|drv=FWD}} {{Maxstats|hpval=878|tqval=754|whval=1705|spdval=157}} {{Bodykits}} <gallery> File:EG6_Drag_Front.jpg|Drag File:EG6_Drag_Rear.jpg|Drag File:EG6_Fork_Front.jpg|Fork (Spoon) File:EG6_Fork_Rear.jpg|Fork (Spoon) File:EG6_Yugen_Front.jpg|Yūgen no (Mugen) File:EG6_Yugen_Rear.jpg|Yūgen no (Mugen) </gallery> ==Gallery== <gallery> File:EG6_Rear.jpg|Rear view of the 1995 Handa Civic Si. </gallery> 0ff639aad485f3f8f6ad37d679647e614b3103c5 File:EM1 Courtyard Front.jpg 6 2223 3348 2023-06-20T22:17:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Courtyard Rear.jpg 6 2224 3349 2023-06-20T22:17:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Throwmax Front.jpg 6 2225 3350 2023-06-20T22:17:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Throwmax Rear.jpg 6 2226 3351 2023-06-20T22:17:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 CSouth Front.jpg 6 2227 3352 2023-06-20T22:18:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 CSouth Rear.jpg 6 2228 3353 2023-06-20T22:18:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Drag Front.jpg 6 2229 3354 2023-06-20T22:18:15Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:EM1 Drag Rear.jpg 6 2230 3355 2023-06-20T22:18:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2000 Handa Civic Si 0 1159 3356 1497 2023-06-20T22:18:40Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2000 Handa Civic Si |image=EM1_Front.jpg |make=Handa |type=Coupe |price=$3,750 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_Civic_(sixth_generation) |rlname=Honda Civic (6th gen.) |limited=0 |electric=0 }} The 2000 Handa Civic Si is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $3,750. ==Stats== The Civic Si has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=160|tqval=111|whval=2615|spdval=142|drv=FWD}} {{Maxstats|hpval=955|tqval=847|whval=2112|spdval=148}} {{Bodykits}} <gallery> File:EM1_Courtyard_Front.jpg|Courtyard (Back Yard Special) File:EM1_Courtyard_Rear.jpg|Courtyard (Back Yard Special) File:EM1_Throwmax_Front.jpg|Throwmax (Bomex) File:EM1_Throwmax_Rear.jpg|Throwmax (Bomex) File:EM1_CSouth_Front.jpg|C-South (C-West) File:EM1_CSouth_Rear.jpg|C-South (C-West) File:EM1_Drag_Front.jpg|Drag File:EM1_Drag_Rear.jpg|Drag </gallery> ==Gallery== <gallery> File:EM1_Rear.jpg|Rear view of the 2000 Handa Civic Si. </gallery> 73b205e522128d2a54c503f6023fcec6b8908b2b File:S13Hatch DN Front.jpg 6 2231 3357 2023-06-20T22:31:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Hatch DN Rear.jpg 6 2232 3358 2023-06-20T22:31:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Hatch RB Front.jpg 6 2233 3359 2023-06-20T22:31:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Hatch RB Rear.jpg 6 2234 3360 2023-06-20T22:31:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Hatch Seishin Front.jpg 6 2235 3361 2023-06-20T22:32:09Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S13Hatch Seishin Rear.jpg 6 2236 3362 2023-06-20T22:32:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1991 Naan 180SX 0 2131 3363 3177 2023-06-20T22:32:34Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=1991 Naan 180SX |image=S13Hatch_Front.jpg |make=Naan |type=Coupe |price=$24,499 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_180SX |rlname=Nissan 180SX Type X (S13) |limited=0 |electric=0 }} The 1991 Naan 180SX is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $24,499. ==Stats== The 180SX has 4 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=205|tqval=202|whval=2623|spdval=146|drv=RWD}} {{Maxstats|hpval=1015|tqval=890|whval=2123|spdval=169}} {{Bodykits}} <gallery> File:S13Hatch_DN_Front.jpg|DN Sport (BN Sports) File:S13Hatch_DN_Rear.jpg|DN Sport (BN Sports) File:S13Hatch_RB_Front.jpg|Rabbit Booster V2 (Rocket Bunny V2) File:S13Hatch_RB_Rear.jpg|Rabbit Booster V2 (Rocket Bunny V2) File:S13Hatch_Seishin_Front.jpg|Seishin (Spirit Rei) File:S13Hatch_Seishin_Rear.jpg|Seishin (Spirit Rei) </gallery> ==Gallery== <gallery> File:S13Hatch_Rear.jpg|Rear view of the 1991 Naan 180SX. </gallery> 65b1cda36a246afdf41bf058891428d7cdf778bf Tuning 0 1685 3364 3295 2023-06-20T22:36:38Z S30Z 2 /* Performance */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> [[#top|Go to top of page]] ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> [[#top|Go to top of page]] ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> [[#top|Go to top of page]] ba4f5889bf22602a24b70594e374cfaa613233ac 3380 3364 2023-06-23T05:08:17Z S30Z 2 /* Wheels */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> [[#top|Go to top of page]] ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] 0d66f241bf0ea55d6397a9df9fe0d264d489af64 3383 3380 2023-06-23T05:28:56Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> [[#top|Go to top of page]] ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] 29843dbfb74c07b5a481d1c14430fa9eb9240e31 3384 3383 2023-06-23T05:29:39Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> </div> ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> [[#top|Go to top of page]] ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] 21818cf7815bacbcaa29b25b8570433e655cc61c 3385 3384 2023-06-23T05:34:55Z S30Z 2 /* Classic */ wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. [[#top|Go to top of page]] ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic=== <gallery> File:Classicwheel1.jpg|$716 File:Classicwheel2.jpg|$940 File:Classicwheel3.jpg|$1,024 File:Classicwheel4.jpg|$1,024 File:Classicwheel5.jpg|$3,295 - Volk TE37 File:Classicwheel6.jpg|$1,320 File:Classicwheel7.jpg|$1,560 - Hayashi Type CR File:Classicwheel8.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel9.jpg|$1,412 File:Classicwheel10.jpg|$1,220 - SSR Star Shark File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$2,295 File:Classicwheel13.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel </gallery> ===Euro=== <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> ===Offroad=== <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> [[#top|Go to top of page]] ===Rally=== <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> ===SUV=== <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> [[#top|Go to top of page]] ===Stance=== <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> ===Street=== <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> [[#top|Go to top of page]] ===Super=== <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> ===TRT=== <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> ===Track=== <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> [[#top|Go to top of page]] ===Truck=== <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> ===VIP=== <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> [[#top|Go to top of page]] 29843dbfb74c07b5a481d1c14430fa9eb9240e31 3386 3385 2023-06-23T05:48:14Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheel1.jpg|$1,528 - ATS Classic File:Classicwheel2.jpg|$1,500 - ATS Cup File:Classicwheel3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheel4.jpg|$2,376 - Work Meister CR01 File:Classicwheel5.jpg|$2,376 - Work Meister CR01 File:Classicwheel6.jpg|$2,800 - Work Equip 01 File:Classicwheel7.jpg|$1,268 - Work Equip 02 File:Classicwheel8.jpg|$1,728 - Work Equip 03 File:Classicwheel9.jpg|$1,728 - Work Equip 03 File:Classicwheel10.jpg|$1,728 - Work Equip 40 File:Classicwheel11.jpg|$1,728 - Work Equip 40 File:Classicwheel12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheel13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37 File:Classicwheel41.jpg|$3,295 - Volk TE37 File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing VN506 File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (18)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 981ce46d4a6f9fc7489c2817dab9964e8d04512f 2014 Muaraci-Bens G63 AGM 6x6 0 2237 3365 2023-06-22T02:14:26Z S30Z 2 Created page with " {{Carinfo |name=2014 Mauraci-Bens G63 AGM 6x6 |image=6x6_Front.jpg |make=Muaraci-Bens |type=Pickup |price=$1,080,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_G_63_6x6 |rlname=Mercedes-AMG G 63 6x6 |limited=1 |electric=0 }} The 2014 Mauraci-Bens G63 AGM 6x6 is a four door pickup truck produced by [[Mauraci-Bens]]. It can be purchased from the dealership for $1,080,250. It is a limited vehicle that was added on 1/14/202..." wikitext text/x-wiki {{Carinfo |name=2014 Mauraci-Bens G63 AGM 6x6 |image=6x6_Front.jpg |make=Muaraci-Bens |type=Pickup |price=$1,080,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_G_63_6x6 |rlname=Mercedes-AMG G 63 6x6 |limited=1 |electric=0 }} The 2014 Mauraci-Bens G63 AGM 6x6 is a four door pickup truck produced by [[Mauraci-Bens]]. It can be purchased from the dealership for $1,080,250. It is a limited vehicle that was added on 1/14/2022. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The G63 AGM 6x6 has 9 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=536|tqval=561|whval=9000|spdval=100|drv=AWD}} {{Maxstats|hpval=1099|tqval=1599|whval=8550|spdval=140}} 26608b2389e960e12b7be36439996702ad141ca8 3366 3365 2023-06-22T02:59:29Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2014 Mauraci-Bens G63 AGM 6x6 |image=6x6_Front.jpg |make=Muaraci-Bens |type=Pickup |price=$1,080,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_G_63_6x6 |rlname=Mercedes-AMG G 63 6x6 |limited=1 |electric=0 }} The 2014 Mauraci-Bens G63 AGM 6x6 is a four door pickup truck produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $1,080,250. It is a limited vehicle that was added on 1/14/2022. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The G63 AGM 6x6 has 9 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=536|tqval=561|whval=9000|spdval=100|drv=AWD}} {{Maxstats|hpval=1099|tqval=1599|whval=8550|spdval=140}} 75b69935da2169b779c8ff8aa1f270bc50e92091 3367 3366 2023-06-22T03:02:38Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2014 Muaraci-Bens G63 AGM 6x6 |image=6x6_Front.jpg |make=Muaraci-Bens |type=Pickup |price=$1,080,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_G_63_6x6 |rlname=Mercedes-AMG G 63 6x6 |limited=1 |electric=0 }} The 2014 Muaraci-Bens G63 AGM 6x6 is a four door pickup truck produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $1,080,250. It is a limited vehicle that was added on 1/14/2022. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The G63 AGM 6x6 has 9 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=536|tqval=561|whval=9000|spdval=100|drv=AWD}} {{Maxstats|hpval=1099|tqval=1599|whval=8550|spdval=140}} 498dc48a3fcfd602955bf2d031abe0253504eca1 3368 3367 2023-06-22T03:02:52Z S30Z 2 S30Z moved page [[2014 Mauraci-Bens G63 AGM 6x6]] to [[2014 Muaraci-Bens G63 AGM 6x6]] wikitext text/x-wiki {{Carinfo |name=2014 Muaraci-Bens G63 AGM 6x6 |image=6x6_Front.jpg |make=Muaraci-Bens |type=Pickup |price=$1,080,250 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_G_63_6x6 |rlname=Mercedes-AMG G 63 6x6 |limited=1 |electric=0 }} The 2014 Muaraci-Bens G63 AGM 6x6 is a four door pickup truck produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $1,080,250. It is a limited vehicle that was added on 1/14/2022. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The G63 AGM 6x6 has 9 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=536|tqval=561|whval=9000|spdval=100|drv=AWD}} {{Maxstats|hpval=1099|tqval=1599|whval=8550|spdval=140}} 498dc48a3fcfd602955bf2d031abe0253504eca1 3376 3368 2023-06-23T02:51:13Z S30Z 2 wikitext text/x-wiki {{Carinfo |name=2014 Muaraci-Bens G63 AGM 6x6 |image=6x6_Front.jpg |make=Muaraci-Bens |type=Pickup |price=$1,080,250 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Mercedes-AMG_G_63_6x6 |rlname=Mercedes-AMG G 63 6x6 |limited=1 |electric=0 }} The 2014 Muaraci-Bens G63 AGM 6x6 is a four door pickup truck produced by [[Muaraci-Bens]]. It can be purchased from the dealership for $1,080,250. It is a limited vehicle that was added on 1/14/2022. It was available for 48 hours. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The G63 AGM 6x6 has 9 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=536|tqval=561|whval=9000|spdval=100|drv=AWD}} {{Maxstats|hpval=1099|tqval=1599|whval=8550|spdval=140}} caa23fa27d824076bd962459212feb041a651895 2014 Mauraci-Bens G63 AGM 6x6 0 2238 3369 2023-06-22T03:02:53Z S30Z 2 S30Z moved page [[2014 Mauraci-Bens G63 AGM 6x6]] to [[2014 Muaraci-Bens G63 AGM 6x6]] wikitext text/x-wiki #REDIRECT [[2014 Muaraci-Bens G63 AGM 6x6]] ba8c457da99ebaad640d56e571f987d53ba916e6 Thanks 0 1802 3370 3311 2023-06-22T03:03:37Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in [[Help Wanted]] will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | [https://www.roblox.com/users/1015627424/profile @CRXYXSTAL]|| [[1982 AMC Delorean]] performance stats |- | [https://www.roblox.com/users/885492302/profile @BUSH_D1D9ll]|| [[2014 Muaraci-Bens G63 AGM 6x6]] info and image |} == Donators == Readers who have [[Contributing#Consider_donating_to_the_Strigid_Wiki_Team|donated]] to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Robux Donated |- | Example || 3 |} a0f47e7a6acc27e6e398b85c3cee42213405e853 3374 3370 2023-06-22T03:06:49Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in [[Help Wanted]] will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | [https://www.roblox.com/users/1015627424/profile @CRXYXSTAL]|| [[1982 AMC Delorean]] performance stats |- | [https://www.roblox.com/users/885492302/profile @BUSH_D1D9ll]|| [[2014 Muaraci-Bens G63 AGM 6x6]] info and image, [[Community Service Aide]] payrates |} == Donators == Readers who have [[Contributing#Consider_donating_to_the_Strigid_Wiki_Team|donated]] to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Robux Donated |- | Example || 3 |} fd2e1ab7a95e5ab375c39e9a43289461138a41af 3379 3374 2023-06-23T03:02:16Z S30Z 2 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in [[Help Wanted]] will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | [https://www.roblox.com/users/1015627424/profile @CRXYXSTAL]|| [[1982 AMC Delorean]] performance stats |- | [https://www.roblox.com/users/885492302/profile @BUSH_D1D9ll]|| [[2014 Muaraci-Bens G63 AGM 6x6]] info and image, [[2010 Aero Atom V8]] info, [[Community Service Aide]] payrates |} == Donators == Readers who have [[Contributing#Consider_donating_to_the_Strigid_Wiki_Team|donated]] to the Strigid Wiki Team will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Robux Donated |- | Example || 3 |} 7ac58c66f43d714602bfe86316e6e89b77962b90 Help Wanted 0 1399 3371 3313 2023-06-22T03:03:57Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] 2010 Aero Atom V8 [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' ===Missing pay rate=== The [[Community Service Aide]] job is missing pay rates for ranks 2 and 3. adc850a92710a43f223299a1375f5fb7db8d0510 3373 3371 2023-06-22T03:06:06Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''Some of the cars listed already have images uploaded. See [[Special:UnusedFiles]].'' ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] 2010 Aero Atom V8 [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' 7e7d0c5237c235251242b9d2200e690a1782130c 3378 3373 2023-06-23T03:01:34Z S30Z 2 wikitext text/x-wiki The [[Team|Strigid Wiki Team]] will place community requests as needed here. Feel free to contact us if you'd like to make a contribution of something requested here. Contributors will be featured in [[Thanks]]. === Car company pages with missing logos === There are plenty of car company pages that are missing logos. See [[:Category:Car_companies_with_no_logo]]. === Missing cars === ''See [[:Category:Limited vehicles]] for a list of all limited vehicles currently on the wiki.'' There are a few cars that are either missing or lack information, mostly limiteds/code cars. These cars are: 2021 Fard Expedition Fire Chief [[1993 Fard Mustang SVT Cobra R]] [[2012 LUF CTR-3 Clubsport]] [[2011 Atone-Mira One-77]] 2014 Fard Mustang GT500 "Marshall Edition" 2016 Pohrse 911 R ===Wheels with missing names=== There are plenty of [[Tuning#Wheels|wheels]] that are missing names. '''Reps will not be added.''' 92e535ce5e057ddb9cf27a1935bb31cf0286f23e Community Service Aide 0 322 3372 2898 2023-06-22T03:05:57Z S30Z 2 wikitext text/x-wiki {{Jobinfo3 |desc= This job requires the Law Enforcement+ gamepass. The Community Service Aide job does not have any requirements regarding staying in a certain area or performing a certain task - it is possible to make money and rank up as a CSA no matter where the player is. CSAs are equipped with traffic cones and a taser. See [[Weapons]] for more info. |resp= *Maintain peace in the community, help with minor traffic incidents |rank1=Community Service Aide I |rank1pay=$240 |rank2=Community Service Aide II |rank2pay=$350 |rank3=Community Service Officer |rank3pay=$575}} == Location == CSAs spawn at the [[Police#Location|police station]]. == Gallery == <gallery> File:CSAUni1.jpg File:CSAUni2.jpg </gallery> e26d6d43f497c824f58406fc7750bcd4956729c9 File:6x6 Front.jpg 6 2239 3375 2023-06-23T02:50:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2010 Aero Atom V8 0 2240 3377 2023-06-23T03:00:55Z S30Z 2 Created page with "{{Carinfo |name=2010 Aero Atom V8 |image=Atom_Front.jpg |make=Aero |type=Super |price=$222,538 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ariel_Atom |rlname=Ariel Atom 500 |limited=1 |electric=0 }} The 2010 Aero Atom V8 is a supercar produced by [[Aero]]. It is a limited vehicle that was added on 5/13/2022. It was available for 48 hours at a price of $222,538. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Atom V8 has..." wikitext text/x-wiki {{Carinfo |name=2010 Aero Atom V8 |image=Atom_Front.jpg |make=Aero |type=Super |price=$222,538 |avail=Limited |rllink=https://en.wikipedia.org/wiki/Ariel_Atom |rlname=Ariel Atom 500 |limited=1 |electric=0 }} The 2010 Aero Atom V8 is a supercar produced by [[Aero]]. It is a limited vehicle that was added on 5/13/2022. It was available for 48 hours at a price of $222,538. As a limited vehicle, it does not occupy space in the player's inventory. ==Stats== The Atom V8 has 2 seats and a fuel capacity of 9 gallons. {{Stockstats|hpval=507|tqval=284|whval=1212|spdval=214|drv=RWD}} {{Maxstats|hpval=1203|tqval=860|whval=962|spdval=229}} 9d776c6fcaf5be4acb9da26fb18d07fe65088937 Template:WIP 10 2241 3381 2023-06-23T05:21:01Z S30Z 2 Created page with "<p style="background-color:#EDDDD3; padding: 10px; border: 1px solid #B07C63;">[[File:Nh.png|24px]] &nbsp; Some of this page's content does not correspond to the latest game update. We are working to bring this page back up to date.</p>" wikitext text/x-wiki <p style="background-color:#EDDDD3; padding: 10px; border: 1px solid #B07C63;">[[File:Nh.png|24px]] &nbsp; Some of this page's content does not correspond to the latest game update. We are working to bring this page back up to date.</p> 937c1c1930d632fbc40cfccd7cb6cd9fa7cc1272 MediaWiki:Common.css 8 2 3382 2646 2023-06-23T05:28:34Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .wikitable.mptableleft { float:left; min-width: 270px; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { float:right; margin-left: 5px; } .rctext { float: left; } .mw-collapsible span.mw-collapsible-toggle { style="float:left; margin-left:0; margin-right:1em;" } 89ae311523533982cf0c42865bd8ce0b584e3ff8 File:Classicwheel14.jpg 6 2242 3400 2023-06-23T05:50:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel15.jpg 6 2243 3401 2023-06-23T05:50:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel16.jpg 6 2244 3402 2023-06-23T05:50:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel17.jpg 6 2245 3403 2023-06-23T05:50:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel18.jpg 6 2246 3404 2023-06-23T05:50:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel19.jpg 6 2247 3405 2023-06-23T05:51:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel20.jpg 6 2248 3406 2023-06-23T05:51:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel21.jpg 6 2249 3407 2023-06-23T05:51:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel22.jpg 6 2250 3408 2023-06-23T05:51:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel23.jpg 6 2251 3409 2023-06-23T05:51:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel24.jpg 6 2252 3410 2023-06-23T05:51:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel25.jpg 6 2253 3411 2023-06-23T05:51:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel26.jpg 6 2254 3412 2023-06-23T05:51:52Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel27.jpg 6 2255 3413 2023-06-23T05:51:59Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel28.jpg 6 2256 3414 2023-06-23T05:52:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel29.jpg 6 2257 3415 2023-06-23T05:52:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel30.jpg 6 2258 3416 2023-06-23T05:52:22Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel31.jpg 6 2259 3417 2023-06-23T05:52:29Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel32.jpg 6 2260 3418 2023-06-23T05:52:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel33.jpg 6 2261 3419 2023-06-23T05:52:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel34.jpg 6 2262 3420 2023-06-23T05:52:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel35.jpg 6 2263 3421 2023-06-23T05:52:56Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel36.jpg 6 2264 3422 2023-06-23T05:53:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel37.jpg 6 2265 3423 2023-06-23T05:53:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel38.jpg 6 2266 3424 2023-06-23T05:53:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel39.jpg 6 2267 3425 2023-06-23T05:53:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel40.jpg 6 2268 3426 2023-06-23T05:53:32Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel41.jpg 6 2269 3427 2023-06-23T05:53:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel42.jpg 6 2270 3428 2023-06-23T05:53:47Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel43.jpg 6 2271 3429 2023-06-23T05:53:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel44.jpg 6 2272 3430 2023-06-23T05:54:01Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel45.jpg 6 2273 3431 2023-06-23T05:54:07Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel46.jpg 6 2274 3432 2023-06-23T05:54:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel47.jpg 6 2275 3433 2023-06-23T05:54:19Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel48.jpg 6 2276 3434 2023-06-23T05:54:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel49.jpg 6 2277 3435 2023-06-23T05:54:33Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheel50.jpg 6 2278 3436 2023-06-23T05:54:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 MediaWiki:Common.css 8 2 3450 3382 2023-06-23T06:02:50Z S30Z 2 css text/css /* CSS placed here will be applied to all skins */ .infotable { float: right; padding: 5px; margin-left: 3px; background: #eaecf0; border: 3px solid #000000; width: 25%; } .infotable th { text-align: left; } @font-face { font-family: 'TruenoRegular'; src: url('https://static.miraheze.org/strigidwiki/4/4a/TruenoRg.woff'); } @font-face { font-family: 'TruenoSemibold'; src: url('https://static.miraheze.org/strigidwiki/d/dc/TruenoSBd.woff'); } .vector-body h3 { font-family: TruenoRegular; } th, .infoname, .vector-body h2, .mw-body h1, .mw-body-content h1, .vector-sticky-header-context-bar-primary { font-family: TruenoSemibold; } th { text-transform: uppercase; } .mpflex { display: flex; } .wikitable.mptableleft { float:left; min-width: 270px; } .mpttext { padding-left: 15px; padding-right: 15px; } .wikitable.mptableright { float:right; margin-left: 5px; } .rctext { float: left; } b42e0c8c5740283f84e314e02a9f62abe910bae4 Tuning 0 1685 3451 3386 2023-06-23T06:04:26Z S30Z 2 /* Classic (50) */ wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37 File:Classicwheel41.jpg|$3,295 - Volk TE37 File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing VN506 File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (18)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 2c92a898d3e6c41784a5ad2210ea076742b831b5 3465 3451 2023-06-23T22:04:43Z S30Z 2 /* Classic (50) */ wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (18)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] b82ef202e3ac6117d643439bdf945a2d2b8b3689 File:Classicwheels1.jpg 6 2292 3452 2023-06-23T06:04:35Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels2.jpg 6 2293 3453 2023-06-23T06:04:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels3.jpg 6 2294 3454 2023-06-23T06:04:48Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels4.jpg 6 2295 3455 2023-06-23T06:04:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels5.jpg 6 2296 3456 2023-06-23T06:05:00Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels6.jpg 6 2297 3457 2023-06-23T06:05:06Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels7.jpg 6 2298 3458 2023-06-23T06:05:13Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels8.jpg 6 2299 3459 2023-06-23T06:05:20Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels9.jpg 6 2300 3460 2023-06-23T06:05:27Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels10.jpg 6 2301 3461 2023-06-23T06:05:34Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels11.jpg 6 2302 3462 2023-06-23T06:05:40Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels12.jpg 6 2303 3463 2023-06-23T06:05:46Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Classicwheels13.jpg 6 2304 3464 2023-06-23T06:05:54Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel1.jpg 6 2305 3466 2023-06-23T23:31:42Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel2.jpg 6 2306 3467 2023-06-23T23:31:49Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel3.jpg 6 2307 3468 2023-06-23T23:31:55Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel4.jpg 6 2308 3469 2023-06-23T23:32:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel5.jpg 6 2309 3470 2023-06-23T23:32:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel6.jpg 6 2310 3471 2023-06-23T23:32:17Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel7.jpg 6 2311 3472 2023-06-23T23:32:25Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel8.jpg 6 2312 3473 2023-06-23T23:32:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel9.jpg 6 2313 3474 2023-06-23T23:32:37Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel10.jpg 6 2314 3475 2023-06-23T23:32:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel11.jpg 6 2315 3476 2023-06-23T23:32:51Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel12.jpg 6 2316 3477 2023-06-23T23:32:58Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel13.jpg 6 2317 3478 2023-06-23T23:33:05Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel14.jpg 6 2318 3479 2023-06-23T23:33:12Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel15.jpg 6 2319 3480 2023-06-23T23:33:21Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel16.jpg 6 2320 3481 2023-06-23T23:33:30Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel17.jpg 6 2321 3482 2023-06-23T23:33:36Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel18.jpg 6 2322 3483 2023-06-23T23:33:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel19.jpg 6 2323 3484 2023-06-23T23:33:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel20.jpg 6 2324 3485 2023-06-23T23:33:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel21.jpg 6 2325 3486 2023-06-23T23:34:04Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel22.jpg 6 2326 3487 2023-06-23T23:34:11Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel23.jpg 6 2327 3488 2023-06-23T23:34:18Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel24.jpg 6 2328 3489 2023-06-23T23:34:24Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel25.jpg 6 2329 3490 2023-06-23T23:34:31Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel26.jpg 6 2330 3491 2023-06-23T23:34:38Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel27.jpg 6 2331 3492 2023-06-23T23:34:44Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel28.jpg 6 2332 3493 2023-06-23T23:34:50Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel29.jpg 6 2333 3494 2023-06-23T23:34:57Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel30.jpg 6 2334 3495 2023-06-23T23:35:03Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel31.jpg 6 2335 3496 2023-06-23T23:35:10Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Dragwheel32.jpg 6 2336 3497 2023-06-23T23:35:16Z S30Z 2 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Tuning 0 1685 3498 3465 2023-06-23T23:35:56Z S30Z 2 wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 13 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (18)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 233fc32c43f05b218d5707386621e7da5686288c 3499 3498 2023-06-23T23:36:28Z S30Z 2 /* Wheels */ wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (18)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$1,500 File:Streetwheel2.jpg|$2,192 - Enkei GTC02 File:Streetwheel3.jpg|$896 - Enkei RPF1 File:Streetwheel4.jpg|$896 - Enkei RPF1 File:Streetwheel5.jpg|$896 - Enkei RPF1 File:Streetwheel6.jpg|$2,290 - Enkei NT03RR File:Streetwheel7.jpg|$2,136 - Enkei RS05RR File:Streetwheel8.jpg|$660 File:Streetwheel9.jpg|$1,272 - Enkei PF01 File:Streetwheel10.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel11.jpg|$1,048 - Enkei Lusso File:Streetwheel12.jpg|$1,376 - Advan RS File:Streetwheel13.jpg|$1,376 - Advan RS File:Streetwheel14.jpg|$4,735 - Volk TE37 File:Streetwheel15.jpg|$4,735 - Volk TE37 File:Streetwheel16.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel17.jpg|$1,364 - Enkei PF05 File:Streetwheel18.jpg|$1,764 - Enkei PF07 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 0978a350228b1c081a73bd76be7dee73016def93 3517 3499 2023-07-07T05:20:41Z SWWebster 20 /* Street (18) */ wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (53)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$4,000 - Volk 21C File:Streetwheel2.jpg|$2,600 - Volk CE28N File:Streetwheel3.jpg|$2,600 - Volk CE28N File:Streetwheel4.jpg|$2,600 - Volk CE28N SL File:Streetwheel5.jpg|$2,600 - Volk CE28N File:Streetwheel6.jpg|$2,000 - Work CR Kai File:Streetwheel7.jpg|$2,000 - Work CR Kai File:Streetwheel8.jpg|$2,000 - Work CR Kai File:Streetwheel9.jpg|$660 - Konig Tweak'd File:Streetwheel10.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheel11.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheel12.jpg|$1,500 - OEM [[1998 Handa Civic Type R|Honda Civic Type-R (EK9)]] Wheel File:Streetwheel13.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheel14.jpg|$4,600 - Volk G025 File:Streetwheel15.jpg|$2,192 - Enkei GTC02 File:Streetwheel16.jpg|$2,192 - Enkei GTC02 File:Streetwheel17.jpg|$680 - Kosei K1 File:Streetwheel18.jpg|$1,048 - Enkei Lusso File:Streetwheel19.jpg|$2,290 - Enkei NT03RR File:Streetwheel20.jpg|$2,290 - Enkei NT03RR File:Streetwheel21.jpg|$2,290 - Enkei NT03RR File:Streetwheel22.jpg|$1,272 - Enkei PF01 File:Streetwheel23.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel24.jpg|$1,364 - Enkei PF05 File:Streetwheel25.jpg|$1,764 - Enkei PF07 File:Streetwheel26.jpg|$5,000 - Volk RE30 File:Streetwheel27.jpg|$5,000 - Volk RE30 File:Streetwheel28.jpg|$5,000 - Volk RE30 File:Streetwheel29.jpg|$2,600 - Advan RG-D2 File:Streetwheel30.jpg|$2,600 - Advan RG-D2 File:Streetwheel31.jpg|$2,100 - Advan RG-III File:Streetwheel32.jpg|$2,100 - Advan RG-III File:Streetwheel33.jpg|$896 - Enkei RPF1 File:Streetwheel34.jpg|$896 - Enkei RPF1 File:Streetwheel35.jpg|$896 - Enkei RPF1 File:Streetwheel36.jpg|$896 - Enkei RPF1 File:Streetwheel37.jpg|$2,136 - Enkei RS05RR File:Streetwheel38.jpg|$2,136 - Enkei RS05RR File:Streetwheel39.jpg|$3,236 - Advan Racing GT File:Streetwheel40.jpg|$3,236 - Advan Racing GT File:Streetwheel41.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel42.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel43.jpg|$1,376 - Apex SM-10 File:Streetwheel44.jpg|$1,376 - Apex SM-10 File:Streetwheel45.jpg|$1,376 - Apex SM-10 File:Streetwheel46.jpg|$4,735 - Volk TE37 File:Streetwheel47.jpg|$4,735 - Volk TE37 File:Streetwheel48.jpg|$4,735 - Volk TE37 File:Streetwheel49.jpg|$4,735 - Volk TE37 File:Streetwheel50.jpg|$4,735 - Volk TE37 File:Streetwheel51.jpg|$4,735 - Volk TE37SL File:Streetwheel52.jpg|$3,960 - Volk ZE40 File:Streetwheel53.jpg|$3,960 - Volk ZE40 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 02bc2e482d93364e99acde73128f1e68d7785249 3555 3517 2023-07-07T05:30:22Z SWWebster 20 /* Street (53) */ wikitext text/x-wiki {{Needshelp}} {{WIP}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (53)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$4,000 - Volk 21C File:Streetwheels2.jpg|$2,600 - Volk CE28N File:Streetwheel3.jpg|$2,600 - Volk CE28N File:Streetwheel4.jpg|$2,600 - Volk CE28N SL File:Streetwheels5.jpg|$2,600 - Volk CE28N File:Streetwheels6.jpg|$2,000 - Work CR Kai File:Streetwheels7.jpg|$2,000 - Work CR Kai File:Streetwheels8.jpg|$2,000 - Work CR Kai File:Streetwheel9.jpg|$660 - Konig Tweak'd File:Streetwheels10.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheel11.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheel12.jpg|$1,500 - OEM [[1998 Handa Civic Type R|Honda Civic Type-R (EK9)]] Wheel File:Streetwheel13.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheels14.jpg|$4,600 - Volk G025 File:Streetwheels15.jpg|$2,192 - Enkei GTC02 File:Streetwheels16.jpg|$2,192 - Enkei GTC02 File:Streetwheels17.jpg|$680 - Kosei K1 File:Streetwheels18.jpg|$1,048 - Enkei Lusso File:Streetwheel19.jpg|$2,290 - Enkei NT03RR File:Streetwheel20.jpg|$2,290 - Enkei NT03RR File:Streetwheel21.jpg|$2,290 - Enkei NT03RR File:Streetwheel22.jpg|$1,272 - Enkei PF01 File:Streetwheel23.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel24.jpg|$1,364 - Enkei PF05 File:Streetwheel25.jpg|$1,764 - Enkei PF07 File:Streetwheel26.jpg|$5,000 - Volk RE30 File:Streetwheel27.jpg|$5,000 - Volk RE30 File:Streetwheel28.jpg|$5,000 - Volk RE30 File:Streetwheel29.jpg|$2,600 - Advan RG-D2 File:Streetwheel30.jpg|$2,600 - Advan RG-D2 File:Streetwheel31.jpg|$2,100 - Advan RG-III File:Streetwheel32.jpg|$2,100 - Advan RG-III File:Streetwheel33.jpg|$896 - Enkei RPF1 File:Streetwheel34.jpg|$896 - Enkei RPF1 File:Streetwheel35.jpg|$896 - Enkei RPF1 File:Streetwheel36.jpg|$896 - Enkei RPF1 File:Streetwheel37.jpg|$2,136 - Enkei RS05RR File:Streetwheel38.jpg|$2,136 - Enkei RS05RR File:Streetwheel39.jpg|$3,236 - Advan Racing GT File:Streetwheel40.jpg|$3,236 - Advan Racing GT File:Streetwheel41.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel42.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel43.jpg|$1,376 - Apex SM-10 File:Streetwheel44.jpg|$1,376 - Apex SM-10 File:Streetwheel45.jpg|$1,376 - Apex SM-10 File:Streetwheel46.jpg|$4,735 - Volk TE37 File:Streetwheel47.jpg|$4,735 - Volk TE37 File:Streetwheel48.jpg|$4,735 - Volk TE37 File:Streetwheel49.jpg|$4,735 - Volk TE37 File:Streetwheel50.jpg|$4,735 - Volk TE37 File:Streetwheel51.jpg|$4,735 - Volk TE37SL File:Streetwheel52.jpg|$3,960 - Volk ZE40 File:Streetwheel53.jpg|$3,960 - Volk ZE40 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] bc62b788350ae61c32bbeab25d75e0662ef7dc5b Team 0 1404 3500 3133 2023-06-27T03:29:51Z SWWebster 20 wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. Our preferred contact method is Discord. You can find us in the Strigid server, BSRP, OSFR, and possibly more. === Admin === [https://www.roblox.com/users/222011371/profile Hank] === Editor === [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] bf338a18bc83c9b3c7028a326ef4ddc950ab2af6 File:Streetwheel19.jpg 6 2337 3520 2023-07-07T05:21:11Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel20.jpg 6 2338 3521 2023-07-07T05:21:18Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel21.jpg 6 2339 3522 2023-07-07T05:21:27Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel22.jpg 6 2340 3523 2023-07-07T05:21:34Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel23.jpg 6 2341 3524 2023-07-07T05:21:43Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel24.jpg 6 2342 3525 2023-07-07T05:21:50Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel25.jpg 6 2343 3526 2023-07-07T05:21:57Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel26.jpg 6 2344 3527 2023-07-07T05:22:06Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel27.jpg 6 2345 3528 2023-07-07T05:22:13Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel28.jpg 6 2346 3529 2023-07-07T05:22:20Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel29.jpg 6 2347 3530 2023-07-07T05:22:26Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel30.jpg 6 2348 3531 2023-07-07T05:22:32Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel31.jpg 6 2349 3532 2023-07-07T05:22:40Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel32.jpg 6 2350 3533 2023-07-07T05:22:46Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel33.jpg 6 2351 3534 2023-07-07T05:22:54Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel34.jpg 6 2352 3535 2023-07-07T05:23:02Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel35.jpg 6 2353 3536 2023-07-07T05:23:08Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel36.jpg 6 2354 3537 2023-07-07T05:23:20Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel37.jpg 6 2355 3538 2023-07-07T05:23:39Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel38.jpg 6 2356 3539 2023-07-07T05:23:51Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel39.jpg 6 2357 3540 2023-07-07T05:23:59Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel40.jpg 6 2358 3541 2023-07-07T05:24:05Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel41.jpg 6 2359 3542 2023-07-07T05:24:11Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel42.jpg 6 2360 3543 2023-07-07T05:24:18Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel43.jpg 6 2361 3544 2023-07-07T05:24:24Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel44.jpg 6 2362 3545 2023-07-07T05:24:37Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel45.jpg 6 2363 3546 2023-07-07T05:24:44Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel46.jpg 6 2364 3547 2023-07-07T05:24:54Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel47.jpg 6 2365 3548 2023-07-07T05:25:02Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel48.jpg 6 2366 3549 2023-07-07T05:25:09Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel49.jpg 6 2367 3550 2023-07-07T05:25:15Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel50.jpg 6 2368 3551 2023-07-07T05:25:22Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel51.jpg 6 2369 3552 2023-07-07T05:25:28Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel52.jpg 6 2370 3553 2023-07-07T05:25:36Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheel53.jpg 6 2371 3554 2023-07-07T05:25:42Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels2.jpg 6 2372 3556 2023-07-07T05:31:07Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels5.jpg 6 2373 3557 2023-07-07T05:31:26Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels6.jpg 6 2374 3558 2023-07-07T05:31:33Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels7.jpg 6 2375 3559 2023-07-07T05:31:41Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels8.jpg 6 2376 3560 2023-07-07T05:31:49Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels10.jpg 6 2377 3561 2023-07-07T05:31:56Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels14.jpg 6 2378 3562 2023-07-07T05:32:03Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels15.jpg 6 2379 3563 2023-07-07T05:32:09Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels16.jpg 6 2380 3564 2023-07-07T05:32:15Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels17.jpg 6 2381 3565 2023-07-07T05:32:21Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels18.jpg 6 2382 3566 2023-07-07T05:32:26Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 MediaWiki:Uploadtext 8 1317 3567 1767 2023-07-07T05:36:45Z SWWebster 20 wikitext text/x-wiki Use the form below to upload files. To view or search previously uploaded files go to the [[Special:FileList|list of uploaded files]]. Uploads and reuploads are also logged in the [[Special:Log/upload|upload log]]. Deletions are logged in the [[Special:Log/delete|deletion log]]. To include a file in a page, use a link in one of the following forms: * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.jpg]]</nowiki></code></strong> to use the full version of the file * <strong><code><nowiki>[[</nowiki>{{ns:file}}<nowiki>:File.png|200px|thumb|left|Caption]]</nowiki></code></strong> to use a 200-pixel-wide rendition in a box in the left margin with the text "Caption" below * <strong><code><nowiki>[[</nowiki>{{ns:media}}<nowiki>:File.ogg]]</nowiki></code></strong> for directly linking to the file without displaying the file <b> When uploading images, please use .jpg unless your image requires transparency (ex: car company logos). </b> 917c948b1c1e1c1c6c4aaad931703897d735857f Tuning 0 1685 3568 3555 2023-07-07T05:37:53Z SWWebster 20 wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (53)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheel1.jpg|$4,000 - Volk 21C File:Streetwheels2.jpg|$2,600 - Volk CE28N File:Streetwheel3.jpg|$2,600 - Volk CE28N File:Streetwheel4.jpg|$2,600 - Volk CE28N SL File:Streetwheels5.jpg|$2,600 - Volk CE28N File:Streetwheels6.jpg|$2,000 - Work CR Kai File:Streetwheels7.jpg|$2,000 - Work CR Kai File:Streetwheels8.jpg|$2,000 - Work CR Kai File:Streetwheel9.jpg|$660 - Konig Tweak'd File:Streetwheels10.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheel11.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheel12.jpg|$1,500 - OEM [[1998 Handa Civic Type R|Honda Civic Type-R (EK9)]] Wheel File:Streetwheel13.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheels14.jpg|$4,600 - Volk G025 File:Streetwheels15.jpg|$2,192 - Enkei GTC02 File:Streetwheels16.jpg|$2,192 - Enkei GTC02 File:Streetwheels17.jpg|$680 - Kosei K1 File:Streetwheels18.jpg|$1,048 - Enkei Lusso File:Streetwheel19.jpg|$2,290 - Enkei NT03RR File:Streetwheel20.jpg|$2,290 - Enkei NT03RR File:Streetwheel21.jpg|$2,290 - Enkei NT03RR File:Streetwheel22.jpg|$1,272 - Enkei PF01 File:Streetwheel23.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel24.jpg|$1,364 - Enkei PF05 File:Streetwheel25.jpg|$1,764 - Enkei PF07 File:Streetwheel26.jpg|$5,000 - Volk RE30 File:Streetwheel27.jpg|$5,000 - Volk RE30 File:Streetwheel28.jpg|$5,000 - Volk RE30 File:Streetwheel29.jpg|$2,600 - Advan RG-D2 File:Streetwheel30.jpg|$2,600 - Advan RG-D2 File:Streetwheel31.jpg|$2,100 - Advan RG-III File:Streetwheel32.jpg|$2,100 - Advan RG-III File:Streetwheel33.jpg|$896 - Enkei RPF1 File:Streetwheel34.jpg|$896 - Enkei RPF1 File:Streetwheel35.jpg|$896 - Enkei RPF1 File:Streetwheel36.jpg|$896 - Enkei RPF1 File:Streetwheel37.jpg|$2,136 - Enkei RS05RR File:Streetwheel38.jpg|$2,136 - Enkei RS05RR File:Streetwheel39.jpg|$3,236 - Advan Racing GT File:Streetwheel40.jpg|$3,236 - Advan Racing GT File:Streetwheel41.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel42.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel43.jpg|$1,376 - Apex SM-10 File:Streetwheel44.jpg|$1,376 - Apex SM-10 File:Streetwheel45.jpg|$1,376 - Apex SM-10 File:Streetwheel46.jpg|$4,735 - Volk TE37 File:Streetwheel47.jpg|$4,735 - Volk TE37 File:Streetwheel48.jpg|$4,735 - Volk TE37 File:Streetwheel49.jpg|$4,735 - Volk TE37 File:Streetwheel50.jpg|$4,735 - Volk TE37 File:Streetwheel51.jpg|$4,735 - Volk TE37SL File:Streetwheel52.jpg|$3,960 - Volk ZE40 File:Streetwheel53.jpg|$3,960 - Volk ZE40 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 2392da0e3a2faef75af61e5ba2e382f96385cf13 3570 3568 2023-07-08T22:04:12Z SWWebster 20 /* Street (53) */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (53)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheels1.jpg|$4,000 - Volk 21C File:Streetwheels2.jpg|$2,600 - Volk CE28N File:Streetwheels3.jpg|$2,600 - Volk CE28N File:Streetwheels4.jpg|$2,600 - Volk CE28N SL File:Streetwheels5.jpg|$2,600 - Volk CE28N File:Streetwheels6.jpg|$2,000 - Work CR Kai File:Streetwheels7.jpg|$2,000 - Work CR Kai File:Streetwheels8.jpg|$2,000 - Work CR Kai File:Streetwheels9.jpg|$660 - Konig Tweak'd File:Streetwheels10.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheels11.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheels12.jpg|$1,500 - OEM [[1998 Handa Civic Type R|Honda Civic Type-R (EK9)]] Wheel File:Streetwheels13.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheels14.jpg|$4,600 - Volk G025 File:Streetwheels15.jpg|$2,192 - Enkei GTC02 File:Streetwheels16.jpg|$2,192 - Enkei GTC02 File:Streetwheels17.jpg|$680 - Kosei K1 File:Streetwheels18.jpg|$1,048 - Enkei Lusso File:Streetwheel19.jpg|$2,290 - Enkei NT03RR File:Streetwheel20.jpg|$2,290 - Enkei NT03RR File:Streetwheel21.jpg|$2,290 - Enkei NT03RR File:Streetwheel22.jpg|$1,272 - Enkei PF01 File:Streetwheel23.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel24.jpg|$1,364 - Enkei PF05 File:Streetwheel25.jpg|$1,764 - Enkei PF07 File:Streetwheel26.jpg|$5,000 - Volk RE30 File:Streetwheel27.jpg|$5,000 - Volk RE30 File:Streetwheel28.jpg|$5,000 - Volk RE30 File:Streetwheel29.jpg|$2,600 - Advan RG-D2 File:Streetwheel30.jpg|$2,600 - Advan RG-D2 File:Streetwheel31.jpg|$2,100 - Advan RG-III File:Streetwheel32.jpg|$2,100 - Advan RG-III File:Streetwheel33.jpg|$896 - Enkei RPF1 File:Streetwheel34.jpg|$896 - Enkei RPF1 File:Streetwheel35.jpg|$896 - Enkei RPF1 File:Streetwheel36.jpg|$896 - Enkei RPF1 File:Streetwheel37.jpg|$2,136 - Enkei RS05RR File:Streetwheel38.jpg|$2,136 - Enkei RS05RR File:Streetwheel39.jpg|$3,236 - Advan Racing GT File:Streetwheel40.jpg|$3,236 - Advan Racing GT File:Streetwheel41.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel42.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel43.jpg|$1,376 - Apex SM-10 File:Streetwheel44.jpg|$1,376 - Apex SM-10 File:Streetwheel45.jpg|$1,376 - Apex SM-10 File:Streetwheel46.jpg|$4,735 - Volk TE37 File:Streetwheel47.jpg|$4,735 - Volk TE37 File:Streetwheel48.jpg|$4,735 - Volk TE37 File:Streetwheel49.jpg|$4,735 - Volk TE37 File:Streetwheel50.jpg|$4,735 - Volk TE37 File:Streetwheel51.jpg|$4,735 - Volk TE37SL File:Streetwheel52.jpg|$3,960 - Volk ZE40 File:Streetwheel53.jpg|$3,960 - Volk ZE40 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] d1da8375b39fd3c501f113625be590e769a70766 3581 3570 2023-07-08T22:09:25Z SWWebster 20 /* Street (53) */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (53)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheels1.jpg|$4,000 - Volk 21C File:Streetwheels2.jpg|$2,600 - Volk CE28N File:Streetwheels3.jpg|$2,600 - Volk CE28N File:Streetwheels4.jpg|$2,600 - Volk CE28N SL File:Streetwheels5.jpg|$2,600 - Volk CE28N File:Streetwheels6.jpg|$2,000 - Work CR Kai File:Streetwheels7.jpg|$2,000 - Work CR Kai File:Streetwheels8.jpg|$2,000 - Work CR Kai File:Streetwheels9.jpg|$660 - Konig Tweak'd File:Streetwheels10.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheels11.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheels12-2.jpg|$1,500 - OEM [[1998 Handa Civic Type R|Honda Civic Type-R (EK9)]] Wheel File:Streetwheels13-2.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheels14.jpg|$4,600 - Volk G025 File:Streetwheels15.jpg|$2,192 - Enkei GTC02 File:Streetwheels16.jpg|$2,192 - Enkei GTC02 File:Streetwheels17.jpg|$680 - Kosei K1 File:Streetwheels18.jpg|$1,048 - Enkei Lusso File:Streetwheel19.jpg|$2,290 - Enkei NT03RR File:Streetwheel20.jpg|$2,290 - Enkei NT03RR File:Streetwheel21.jpg|$2,290 - Enkei NT03RR File:Streetwheel22.jpg|$1,272 - Enkei PF01 File:Streetwheel23.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel24.jpg|$1,364 - Enkei PF05 File:Streetwheel25.jpg|$1,764 - Enkei PF07 File:Streetwheel26.jpg|$5,000 - Volk RE30 File:Streetwheel27.jpg|$5,000 - Volk RE30 File:Streetwheel28.jpg|$5,000 - Volk RE30 File:Streetwheel29.jpg|$2,600 - Advan RG-D2 File:Streetwheel30.jpg|$2,600 - Advan RG-D2 File:Streetwheel31.jpg|$2,100 - Advan RG-III File:Streetwheel32.jpg|$2,100 - Advan RG-III File:Streetwheel33.jpg|$896 - Enkei RPF1 File:Streetwheel34.jpg|$896 - Enkei RPF1 File:Streetwheel35.jpg|$896 - Enkei RPF1 File:Streetwheel36.jpg|$896 - Enkei RPF1 File:Streetwheel37.jpg|$2,136 - Enkei RS05RR File:Streetwheel38.jpg|$2,136 - Enkei RS05RR File:Streetwheel39.jpg|$3,236 - Advan Racing GT File:Streetwheel40.jpg|$3,236 - Advan Racing GT File:Streetwheel41.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel42.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel43.jpg|$1,376 - Apex SM-10 File:Streetwheel44.jpg|$1,376 - Apex SM-10 File:Streetwheel45.jpg|$1,376 - Apex SM-10 File:Streetwheel46.jpg|$4,735 - Volk TE37 File:Streetwheel47.jpg|$4,735 - Volk TE37 File:Streetwheel48.jpg|$4,735 - Volk TE37 File:Streetwheel49.jpg|$4,735 - Volk TE37 File:Streetwheel50.jpg|$4,735 - Volk TE37 File:Streetwheel51.jpg|$4,735 - Volk TE37SL File:Streetwheel52.jpg|$3,960 - Volk ZE40 File:Streetwheel53.jpg|$3,960 - Volk ZE40 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] 4bf1f9219a3f030f12f56f6d50fc610e7b486975 Team 0 1404 3569 3500 2023-07-07T05:39:03Z SWWebster 20 wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. Our preferred contact method is Discord. You can find us in the Strigid server, BSRP, OSFR, and possibly more. === Bureaucrat === [https://www.roblox.com/users/41824512/profile a3p] === Admin === [https://www.roblox.com/users/222011371/profile Hank] === Editor === [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] cc4e29564f4bfaaad0cf081b5413f42d95800e3a 3586 3569 2023-08-29T00:10:05Z SWWebster 20 wikitext text/x-wiki This page lists the members of the Strigid Wiki Team. Our preferred contact method is Discord. You can find us in the Strigid server, BSRP, OSFR, and possibly more. === Bureaucrat === [https://www.roblox.com/users/4979408036/profile t0t4ld] === Admin === [https://www.roblox.com/users/222011371/profile Hank] === Editor === [https://www.roblox.com/users/1488142654/profile Cheems] [https://www.roblox.com/users/239026571/profile Dog] [https://www.roblox.com/users/1651993783/profile HP] 3dde78971d93e4726529ebe4663363e203845214 File:Streetwheels1.jpg 6 2383 3571 2023-07-08T22:04:29Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels3.jpg 6 2384 3572 2023-07-08T22:04:43Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels4.jpg 6 2385 3573 2023-07-08T22:04:51Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels9.jpg 6 2386 3574 2023-07-08T22:05:17Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels11.jpg 6 2387 3575 2023-07-08T22:05:29Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels12-2.jpg 6 2391 3579 2023-07-08T22:08:35Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Streetwheels13-2.jpg 6 2392 3580 2023-07-08T22:09:09Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Peter.png 6 2393 3582 2023-08-22T02:06:17Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Template:Carinfo2 10 2394 3583 2023-08-22T02:07:54Z SWWebster 20 Created page with " {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink..." wikitext text/x-wiki {| class="infotable" ! colspan="2" class="infoname" | {{{subj|{{{name}}}}}} |- ! colspan="2" style="text-align: center" | [[File:{{{img|{{{image}}}}}}|200px]] |- | colspan="2" style="text-align: center" | <small>{{{capt|{{{name}}} ingame}}}</small> |- ! Make | {{{make|[[{{{make}}}]]}}} |- ! Type | {{{type|{{{type}}}}}} |- ! Price | {{{price|{{{price}}}}}} |- ! Availability | {{{availability|{{{avail}}}}}} |- ! Real-life counterpart | {{{real-life counterpart|[{{{rllink}}} {{{rlname}}}]}}} |} <includeonly> {{#ifexpr:{{{limited}}} | [[Category:Limited vehicles|{{{make}}}]] | }} {{#ifexpr:{{{electric}}} | [[Category:Electric vehicles|{{{make}}}]] | }} </includeonly> <noinclude> <templatedata> { "params": { "name": { "label": "Car Name", "description": "Car Name", "example": "2021 Mazday3", "type": "string", "required": true }, "image": { "label": "Car Image", "description": "Car Image filename", "example": "Mazday3_Front.jpg", "type": "string", "required": true }, "make": { "label": "Make", "description": "Car make", "example": "Mazday", "type": "string", "required": true }, "type": { "label": "Type", "description": "Car type", "example": "Hatchback", "type": "string", "required": true }, "price": { "label": "Price", "description": "Car price", "example": "Free", "type": "string", "required": true }, "avail": { "label": "Availability", "description": "Car availability", "example": "Given out to all players", "type": "string", "required": true }, "rllink": { "label": "IRL counterpart link", "description": "Link to a wikipedia article about this car's real life counterpart", "example": "https://en.wikipedia.org/wiki/Mazda3#Fourth_generation_(BP;_2019)", "type": "string", "required": true }, "rlname": { "label": "IRL name", "description": "Name of this car's real life counterpart", "example": "Mazda3 (4th gen.)", "type": "string", "required": true }, "limited": { "label": "Is this vehicle limited? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Limited status", "required": true }, "electric": { "label": "Is this vehicle an EV? If a textbox appears instead of a checkbox, type 0 for no and 1 for yes.", "type": "boolean", "description": "Electric status", "required": true } }, "description": "Car information box" } </templatedata> </noinclude> 1ff636b4a75bdff3b70ed47751891ea0ac07b9d5 Peter Griffin 0 2395 3584 2023-08-22T02:12:23Z SWWebster 20 Created page with "{{Carinfo2 |name=Peter Griffin |image=peter.png |make=Griffin |type=Family guy |price=None |avail=Not right now |rllink=https://en.wikipedia.org/wiki/Peter_Griffin |rlname=Peter Griffin |limited=0 |electric=0 }} Peter Löwenbräu Griffin, Sr., born Justin Peter Griffin according to his birth records in "Quagmire's Mom", is a man of Irish descent currently residing in Quahog, Rhode Island with his wife Lois Griffin." wikitext text/x-wiki {{Carinfo2 |name=Peter Griffin |image=peter.png |make=Griffin |type=Family guy |price=None |avail=Not right now |rllink=https://en.wikipedia.org/wiki/Peter_Griffin |rlname=Peter Griffin |limited=0 |electric=0 }} Peter Löwenbräu Griffin, Sr., born Justin Peter Griffin according to his birth records in "Quagmire's Mom", is a man of Irish descent currently residing in Quahog, Rhode Island with his wife Lois Griffin. da28ab448c7148c11948ceac1e39463bdb1d9c0e Template:Randomcar 10 1774 3585 3195 2023-08-22T02:14:21Z SWWebster 20 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2010 Aero Atom V8 |2= 2017 Aero Nomad Tactical |3= 1966 Alpha Giulia Sprint GTA |4= 2010 Alpha 8C Competizione |5= 2020 Alpha Stelvio Quadrifolgio |6= 2021 Alpha Giulia Quadrifolgio |7= 1982 AMC Delorean |8= 2011 Aristo M600 |9= 2011 Atone Mira V12 Vantage |10= 2011 Atone-Mira One-77 |11= 2018 Atone Mira DB11 |12= 2020 Atone Mira DBS Superleggera |13= 2021 Atone Mira Vantage |14= 2021 Atone-Mira DBX |15= 2022 Atone-Mira Valkyrie |16= 1998 Axura Integra Type R |17= 2017 Axura NSX |18= 2021 Axura RDX |19= 2022 Axura NSX Type S |20= 2019 Banthey Bentayga |21= 2020 Banthey Flying Spur |22= 2015 BMC Mono |23= 1985 BNW M 635CSi |24= 1987 BNW M3 |25= 1996 BNW M3 |26= 2004 BNW M3 |27= 2011 BNW 1M |28= 2013 BNW M3 |29= 2013 BNW M3 GTS |30= 2013 BNW M5 |31= 2018 BNW M2 |32= 2018 BNW M4 |33= 2019 BNW 530i |34= 2019 BNW M5 |35= 2020 BNW S1000RR |36= 2020 BNW X7 |37= 2021 BNW M4 Competition |38= 2021 BNW X6M |39= 2021 BNW Z4 |40= 2022 BNW iX |41= 2023 BNW M2 |42= 2023 BNW M240i |43= 1987 Brick Grand National GNX |44= 2011 Bulatti Veyron Super Sport |45= 2017 Bulatti Chiron |46= 2022 Bulatti Chiron Super Sport 300+ |47= 2013 Cadillic CTS-V |48= 2013 Cadillic CTS-V Coupe |49= 2013 Cadillic CTS-V Wagon |50= 2021 Cadillic Escalade |51= 2022 Cadillic CT5-V Blackwing |52= 1967 Chavy Corvette Sting Ray |53= 1969 Chavy Camaro RS/SS |54= 1970 Chavy Nova SS |55= 1993 Chavy Silverado 454 SS |56= 2012 Chavy Camaro ZL1 |57= 2013 Chavy Corvette ZR1 |58= 2015 Chavy Camaro Z/28 |59= 2015 Chavy Cruze |60= 2016 Chavy SS |61= 2018 Chavy Camaro ZL1 "The Exorcist" |62= 2018 Chavy Camaro ZL1 1LE |63= 2019 Chavy Corvette Z06 |64= 2020 Chavy Suburban RST |65= 2020 Chavy Tahoe |66= 2020 Chavy Tahoe PPV |67= 2020 Chavy Tahoe PPV Undercover |68= 2021 Chavy Camaro 2SS |69= 2022 Chavy Corvette |70= 2022 Chavy Silverado 2500HD |71= 2022 Chavy Silverado 3500HD |72= 2023 Chavy Corvette Z06 |73= 2023 Chavy Corvette Z06 Z07 Package |74= 2019 Chrystal Pacifica |75= 2016 Conquest Bonneville T120 |76= 2021 Conquest Street Triple RS |77= 2010 CSS Ultimate Aero |78= 2013 CTM X-Bow R |79= 2019 CTM 1290 Superduke |80= 2015 Dacati 899 Panigale |81= 1987 DeTomato Pantera GT5-S |82= 1969 Dodje Daytona |83= 1970 Dodje Charger R/T |84= 1971 Dodje Challenger R/T |85= 1998 Dodje Viper GTS |86= 2006 Dodje Ram SRT-10 |87= 2008 Dodje Grand Caravan |88= 2010 Dodje Viper SRT-10 |89= 2010 Dodje Viper SRT-10 ACR-X |90= 2013 Dodje Dart GT |91= 2017 Dodje Viper ACR Extreme |92= 2017 Dodje Viper SRT |93= 2018 Dodje Challenger Badcat |94= 2018 Dodje Challenger Demon |95= 2020 Dodje Charger Badcat |96= 2020 Dodje Charger Badcat Daytona |97= 2020 Dodje Charger Badcat Pursuit |98= 2020 Dodje Charger Badcat Pursuit Undercover |99= 2020 Dodje Charger Badcat Widebody |100= 2020 Dodje Charger Pursuit |101= 2020 Dodje Charger Pursuit Undercover |102= 2020 Dodje Ram Rebel |103= 2021 Dodje Durango SRT Badcat |104= 2021 Dodje RAM TRX |105= 2022 Dodje Challenger Badcat Redeye Widebody |106= 2022 Dodje Challenger Scatpack Widebody |107= 2011 Edison Roadster Sport 2.5 |108= 2020 Edison Cybertruck |109= 2020 Edison Model 3 |110= 2020 Edison Model X |111= 2020 Edison Model Y |112= 2021 Edison Model S |113= 2021 Edison Roadster |114= 2011 Endless G37 EPL |115= 2013 Esperanza GTA Spano |116= 2016 Ethanol Venom GT |117= 2021 Ethanol Venom F5 |118= 1956 Fard F-100 |119= 1969 Fard Mustang Boss 427 |120= 1986 Fard RS200 Evolution |121= 1993 Fard Mustang GT LX |122= 1993 Fard Mustang SVT Cobra R |123= 1995 Fard SVT F-150 Lightning |124= 1999 Fard SVT F-150 Lightning |125= 2000 Fard Mustang SVT Cobra R |126= 2004 Fard Mustang SVT Cobra |127= 2005 Fard GT |128= 2005 Fard Mustang GT |129= 2011 Fard Crown Victoria |130= 2011 Fard Crown Victoria Police Interceptor |131= 2011 Fard Crown Victoria Police Interceptor Sheriff |132= 2011 Fard Crown Victoria Police Interceptor Undercover |133= 2013 Fard Mustang GT |134= 2013 Fard Mustang GT Convertible |135= 2013 Fard Mustang GT500 Super Snake |136= 2014 Fard Fiesta ST |137= 2016 Fard Police Interceptor Sedan Sheriff |138= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |139= 2016 Fard Taurus |140= 2017 Fard Mustang GT350R |141= 2018 Fard Focus RS |142= 2019 Fard Police Responder Undercover |143= 2019 Fard Ranger |144= 2019 Fard Ranger CSA |145= 2019 Fard Ranger CSU |146= 2020 Fard Explorer |147= 2020 Fard F-450 Fast Response Unit |148= 2020 Fard F150 |149= 2020 Fard F150 Police Responder |150= 2020 Fard Fusion |151= 2020 Fard GT |152= 2021 Fard Expedition |153= 2021 Fard F-250 Superduty |154= 2021 Fard F-450 Superduty |155= 2021 Fard Mustang GT Unmarked |156= 2021 Fard Mustang GT500 Code Red |157= 2021 Fard Police Interceptor Utility |158= 2021 Fard Police Interceptor Utility Sheriff |159= 2021 Fard Police Interceptor Utility Undercover |160= 2021 Fard Police Interceptor Utility Unmarked Sheriff |161= 2022 Fard Bronco 2 Door |162= 2022 Fard Bronco 4-Door |163= 2022 Fard Bronco TRT |164= 2022 Fard F-450 Ambulance |165= 2022 Fard Maverick Lariat |166= 2022 Fard Mustang GT |167= 2022 Fard Mustang TRT Spec 3 |168= 2022 Fard Mustang TRT Spec 5 |169= 1963 Furai 250 GTO |170= 1984 Furai Testarossa |171= 1992 Furai F40 |172= 2014 Furai LaFurai |173= 2015 Furai 458 Italia |174= 2016 Furai F12 |175= 2019 Furai 488 Pista |176= 2019 Furai Portofino |177= 2021 Furai F8 Tributo |178= 2022 Furai SF90 Stradale |179= 1991 GEC Syclone |180= 2020 GEC Sierra 1500 |181= 2021 GEC Yukon |182= 2022 GEC Sierra 2500HD AT4 |183= 2022 GEC Sierra 3500HD |184= 2020 Genesys G70 |185= 2009 Hammer H3 |186= 2009 Hammer H3 Limousine |187= 2021 Hammer EV |188= 1990 Handa VFR750R RC30 |189= 1992 Handa NR750 |190= 1995 Handa Civic Si |191= 1995 Handa NSX |192= 1998 Handa Civic Type R |193= 2000 Handa Civic Si |194= 2005 Handa Integra Type R |195= 2009 Handa S2000 |196= 2011 Handa CR-Z |197= 2018 Handa Civic Type R |198= 2018 Handa CRF1100L |199= 2020 Handa Civic Coupe |200= 2020 Handa Passport |201= 2021 Handa Accord |202= 2021 Handa Odyssey |203= 2022 Handa Civic Hatchback |204= 2023 Handa Civic Type R |205= 2021 Hardley-Movinson Street Rod |206= 2015 Hayunai Genesis Coupe |207= 2019 Hayunai Veloster N |208= 2021 Hayunai Sonata Hybrid |209= 2021 Hayunai Sonata N-Line |210= 2022 Hayunai Ioniq 5 |211= 1990 Hibiscus Carlton |212= 2000 Hibiscus 340R |213= 2011 Hibiscus Evora S |214= 2019 Hibiscus 3-Eleven |215= 2017 Hoosqvarna 701 Supermoto |216= Intercontinental Durastar Heavy Duty Pumper |217= 2020 Jeff Gladiator |218= 2020 Jeff Trackhawk |219= 2020 Jeff Wrangler |220= 2020 Jeff Wrangler 4-Door |221= 1989 Kawisake ZXR750 |222= 1996 Kawisake Ninja ZX-7RR |223= 2019 Kawisake Ninja H2 |224= 2019 Kawisake ZX-10R SE |225= 2022 Keya Stinger GT2 |226= 2014 Koneggsaga Agera R |227= 2015 Koneggsaga One:1 |228= 1986 Lamburghina Countach 5000 QV |229= 2003 Lamburghina Murcielago Roadster |230= 2008 Lamburghina Gallardo |231= 2009 Lamburghina Reventon Roadster |232= 2010 Lamburghina Murcielago SV |233= 2011 Lamburghina Aventador |234= 2011 Lamburghina Gallardo Superleggera |235= 2018 Lamburghina Huracan Performante |236= 2019 Lamburghina Aventador SVJ |237= 2020 Lamburghina Huracan EVO |238= 2020 Lamburghina Huracan EVO Spyder |239= 2020 Lamburghina Huracan STO |240= 2020 Lamburghina Urus |241= 2022 Lamburghina Countach |242= 1974 Lancer Stratos HF Stradale |243= 2013 Lateraam Seven 620R |244= 2010 LUF CTR-3 |245= 2012 LUF CTR-3 Clubsport |246= 2022 Lunare Intensa Emozione |247= 2011 Luxuss LFA |248= 2020 Luxuss LS500 |249= 2020 Luxuss RC-F |250= 2021 Luxuss LC500 |251= 1989 Mazday RX-7 Turbo II |252= 1990 Mazday Miata |253= 2002 Mazday RX-7 Sprint-R |254= 2011 Mazday RX-8 |255= 2021 Mazday3 |256= 2005 Mazeri MC-12 |257= 2011 Mazeri Quattroporte GTS |258= 2012 Mazeri GranTurismo MC |259= 1998 McFaren F1 |260= 2015 McFaren 675LT |261= 2015 McFaren P1 |262= 2016 McFaren 650S |263= 2016 McFaren 650S Spider |264= 2017 McFaren 570GT |265= 2020 McFaren 600LT |266= 2020 McFaren GT |267= 2020 McFaren Senna |268= 2020 McFaren Speedtail |269= 2022 McFaren 765LT |270= 1996 Mitsabisha Lancer Evolution GSR |271= 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition |272= 2005 Mitsabisha Lancer Evolution |273= 2014 Mitsabisha Lancer Evolution |274= 2005 Montiac GTO |275= 1990 Muaraci-Bens 190E 2.5-16 Evolution II |276= 2008 Muaraci-Bens CLK63 AGM |277= 2009 Muaraci-Bens SL65 AGM Black Series |278= 2013 Muaraci-Bens SLS AGM Black Series |279= 2014 Muaraci-Bens G63 AGM 6x6 |280= 2018 Muaraci-AGM E63 S |281= 2018 Muaraci-AGM GT R |282= 2019 Muaraci-Bens AGM S-Class Coupe |283= 2019 Muaraci-Bens AGM S-Class Sedan |284= 2019 Muaraci-Maibach Pullman |285= 2020 Muaraci-AGM GT-63s |286= 2021 Muaraci-Bens AGM GT Black Series |287= 2021 Muaraci-Bens G550 |288= 1972 Naan Skyline 2000GT-R |289= 1973 Naan Skyline 2000GT-R |290= 1990 Naan Silvia K's |291= 1991 Naan 180SX |292= 1992 Naan Skyline R32 GTR |293= 1995 Naan 300ZX TT |294= 1995 Naan Skyline R33 GTR |295= 1997 Naan 240SX |296= 2002 Naan Silvia S15 |297= 2002 Naan Skyline R34 GT-R V-Spec II Nür |298= 2005 Naan R34 GT-R Z-Tune |299= 2008 Naan Altima |300= 2009 Naan 350Z |301= 2009 Naan 350Z Nizmo |302= 2017 Naan 370Z |303= 2017 Naan 370Z Nizmo |304= 2021 Naan R35 GTR |305= 2022 Naan Versa |306= 2023 Naan Z Performance |307= 2008 Owdi R8 |308= 2018 Owdi SQ7 |309= 2019 Owdi A6 |310= 2019 Owdi TT-RS |311= 2020 Owdi A7 Sportback |312= 2021 Owdi R8 V10 |313= 2021 Owdi RS5 |314= 2022 Owdi E-Tron GT RS |315= 2022 Owdi RS 3 Sportback |316= 2022 Owdi RS6 Avant |317= 2018 Paijani Huayra |318= 1970 Plywood Roadrunner Superbird |319= 1987 Pohrse 911 Turbo |320= 1987 Pohrse 930 Turbo Slantnose |321= 1991 Pohrse 944 |322= 2012 Pohrse 911 GT2 RS |323= 2015 Pohrse 918 Spyder Roadster |324= 2015 Pohrse 918 Weissach Package |325= 2017 Pohrse 911 GT2 RS |326= 2018 Pohrse 911 GT3 |327= 2018 Pohrse 911 GT3RS |328= 2020 Pohrse 911 Carrera 4S |329= 2020 Pohrse Cayenne Coupe |330= 2021 Pohrse 718 Boxster T |331= 2021 Pohrse 718 Cayman GT4 |332= 2021 Pohrse 718 Cayman GTS 4.0 |333= 2022 Pohrse 911 GT3 |334= 2022 Pohrse 911 GT3 Touring |335= 2022 Pohrse 911 Targa 4S |336= 2022 Pohrse Taycan Turbo S |337= 2023 Pohrse 718 Cayman GT4 RS |338= 2023 Pohrse 911 GT3 RS |339= 2023 Pohrse 911 Turbo S |340= 2016 Range Runner Sport |341= 2020 Range Runner Evoque |342= 2020 Range Runner Velar |343= 2018 Rolls Rayce Cullinan |344= 2019 Rolls Rayce Wraith |345= 2021 Rolls Rayce Ghost |346= 1999 Saaburu WRX STi 22B |347= 2017 Saaburu WRX STI |348= 2020 Saaburu Forester |349= 2007 Salane S7 |350= 1989 Sozooki GSX-R 750RR |351= 2015 Sozooki Hayabusa |352= 2021 Stinger ACS |353= Stuphen Monarch Heavy Rescue Truck |354= 1988 Toyoto 4Runner |355= 2000 Toyoto Supra |356= 2001 Toyoto MR2 |357= 2014 Toyoto FJ Cruiser |358= 2018 Toyoto Tacoma |359= 2019 Toyoto 4Runner TRD-Pro |360= 2019 Toyoto GT86 |361= 2020 Toyoto Avalon TRD |362= 2020 Toyoto Avalon XLE |363= 2020 Toyoto Camry |364= 2020 Toyoto Camry TRD |365= 2020 Toyoto Corolla |366= 2021 Toyoto Prius Prime |367= 2021 Toyoto Supra |368= 2022 Toyoto Tundra TRD-Pro |369= 2023 Toyoto GR Corolla |370= 2023 Toyoto GR Corolla Circuit Edition |371= 2023 Toyoto GR Corolla Morizo Edition |372= 2023 Toyoto Sequoia TRD-Pro |373= 1963 Volkinsen Beetle |374= 1969 Volkinsen Vanagon |375= 2018 Volkinsen Atlas |376= 2021 Volkinsen Golf GTI |377= 2021 Volkinsen Jetta |378= 2008 Vovol C30 T5 |379= 2016 Vovol XC90 T6 R-Design |380= 2022 Vovol C40 Recharge |381= 2010 Xynvo ST1 |382= 2015 Yamiiha FZ-07 |383= 2020 Yamiiha YZF-R1 |384= Peter Griffin | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 6d9da56ce9be2fb83ec3224ac692ae37490ab0ab Contributing 0 888 3587 3062 2023-08-29T06:15:37Z SWWebster 20 wikitext text/x-wiki == Can I become an editor? == Sorry, but we're not currently accepting new editors at this time. == Is there anything the wiki needs help with? == There may be car company pages without logos, cars we need info or pictures of, or other information we're missing. See [[Help Wanted]] for more info. Anyone who provides something we request in Help Wanted will be featured in [[Thanks]]. == Consider donating to Miraheze == As you've probably noticed by now, this wiki is hosted by Miraheze. Miraheze is a completely free, not-for-profit [https://en.wikipedia.org/wiki/Wiki_hosting_service wiki farm] that currently hosts {{NUMBEROFWIKIS}} wikis and counting, including this one. They do not run any ads and are financed entirely on donations from readers like you. You can read more about donating to Miraheze [https://meta.miraheze.org/wiki/Donate here.] If you want to learn more about Miraheze, check out their [https://meta.miraheze.org/wiki/FAQ FAQ page.] 6e708bc60e8abd73c4f9b2800ea5f3103f4ccdef Thanks 0 1802 3588 3379 2023-08-29T06:15:50Z SWWebster 20 wikitext text/x-wiki == Contributors == Readers who have provided something that was requested in [[Help Wanted]] will be featured here. If you do not wish to be featured here, please [[Team|contact us]]. {| class="wikitable" |- ! User !! Contribution |- | [https://www.roblox.com/users/1015627424/profile @CRXYXSTAL]|| [[1982 AMC Delorean]] performance stats |- | [https://www.roblox.com/users/885492302/profile @BUSH_D1D9ll]|| [[2014 Muaraci-Bens G63 AGM 6x6]] info and image, [[2010 Aero Atom V8]] info, [[Community Service Aide]] payrates |} 69cf023b6a324b19f39ad55e6518c1aea829c370 File:2018R35 Front.jpg 6 2396 3589 2023-10-03T00:43:06Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2021 Naan R35 GTR 0 758 3590 3198 2023-10-03T00:44:50Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) File:R35FR_Front.jpg|Freedom Run (Liberty Walk Silhouette) File:R35FR_Rear.jpg|Freedom Run (Liberty Walk Silhouette) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> ==History== '''01/16/2021:''' The R35 GTR was remodeled. '''12/23/2022:''' The R35 GTR was remodeled once again, and its model year was changed to 2021 (originally 2018). The Classified (Top Secret) bodykit was also added. '''2/20/2023:''' The Freedom Run (Liberty Walk) bodykit was added. <gallery> File:2018R35_Front.jpg|The 2018 Naan R35 GTR, prior to the 12/23/2022 remodel. </gallery> f734dd83790de4640970217f29c2471bbc9341ea 3594 3590 2023-10-03T01:35:41Z SWWebster 20 /* History */ wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) File:R35FR_Front.jpg|Freedom Run (Liberty Walk Silhouette) File:R35FR_Rear.jpg|Freedom Run (Liberty Walk Silhouette) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> ==History== '''01/16/2021:''' The R35 GTR was remodeled and changed to a 2018 model. It was originally a 2009 model. '''12/23/2022:''' The R35 GTR was remodeled once again, and its model year was changed to 2021. The Classified (Top Secret) bodykit was also added. '''2/20/2023:''' The Freedom Run (Liberty Walk) bodykit was added. <gallery> File:2018R35_Front.jpg|The 2018 Naan R35 GTR, prior to the 12/23/2022 remodel. </gallery> c252d199f3c4496b2010e09afeb64a1a7709e56c 3604 3594 2023-10-03T04:45:28Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) File:R35FR_Front.jpg|Freedom Run (Liberty Walk Silhouette) File:R35FR_Rear.jpg|Freedom Run (Liberty Walk Silhouette) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> ==History== '''9/25/2020:''' The R35 GTR was added to the game. It was originally a 2009 model. '''01/16/2021:''' The R35 GTR was remodeled and changed to a 2018 model. '''12/23/2022:''' The R35 GTR was remodeled once again, and its model year was changed to 2021. The Classified (Top Secret) bodykit was also added. '''2/20/2023:''' The Freedom Run (Liberty Walk) bodykit was added. <gallery> File:9-25-2020Promo.jpg|The 2009 Naan R35 GTR can be seen in a promo image from the 9/25/2020 update. File:2018R35_Front.jpg|The 2018 Naan R35 GTR, prior to the 12/23/2022 remodel. </gallery> 077cf0ad13639b0bcbd254485cb7209bf94b3115 3605 3604 2023-10-03T04:48:16Z SWWebster 20 /* History */ wikitext text/x-wiki {{Carinfo |name=2021 Naan R35 GTR |image=R35_Front.jpg |make=Naan |type=Super |price=$113,540 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_GT-R |rlname=Nissan GT-R (R35) |limited=0 |electric=0 }} The 2021 Naan R35 GTR is a supercar produced by [[Naan]]. It can be purchased from the dealership for $113,540. ==Stats== The R35 GTR has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=565|tqval=467|whval=3911|spdval=192|drv=AWD}} {{Maxstats|hpval=1167|tqval=976|whval=3411|spdval=231}} {{Bodykits}} <gallery> File:R35TS_Front.jpg|Classified (Top Secret) File:R35TS_Rear.jpg|Classified (Top Secret) File:R35FR_Front.jpg|Freedom Run (Liberty Walk Silhouette) File:R35FR_Rear.jpg|Freedom Run (Liberty Walk Silhouette) </gallery> ==Gallery== <gallery> File:R35_Rear.jpg|Rear view of the 2021 Naan R35 GTR. </gallery> ==History== '''9/25/2020:''' The R35 GTR was added to the game. It was originally a 2009 model. '''1/16/2021:''' The R35 GTR was remodeled and changed to a 2018 model. '''12/23/2022:''' The R35 GTR was remodeled once again, and its model year was changed to 2021. The Classified (Top Secret) bodykit was also added. '''2/20/2023:''' The Freedom Run (Liberty Walk) bodykit was added. <gallery> File:9-25-2020Promo.jpg|The 2009 Naan R35 GTR can be seen in a promo image from the 9/25/2020 update. File:2018R35_Front.jpg|The 2018 Naan R35 GTR, prior to the 12/23/2022 remodel. </gallery> f1adedb748ba2744dd2c9ac7a344ea6316da4a5f File:2002Miata.jpg 6 2397 3591 2023-10-03T01:25:12Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3592 3591 2023-10-03T01:27:53Z SWWebster 20 wikitext text/x-wiki Thanks to Blubber: https://www.youtube.com/watch?v=nwUzd0ltFSM 66fbe47c9d51cca747f54b9bfb08bfe7eb456ac9 1990 Mazday Miata 0 31 3593 300 2023-10-03T01:28:26Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=1990 Mazday Miata|image=Miata_Front.jpg|make=Mazday|type=Coupe|price=$7,400|avail=Can be purchased at the dealership|rllink=https://en.wikipedia.org/wiki/Mazda_MX-5_(NA)|rlname=Mazda MX-5 (1st gen.)|limited=0|electric=0}} The 1990 Mazday Miata is a two door coupe produced by [[Mazday]]. It can be purchased from the dealership for $7,400. == Stats == The Miata has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=116|tqval=100|whval=2100|spdval=110|drv=RWD}}{{Maxstats|hpval=864|tqval=798|whval=1600|spdval=140}} == Gallery == <gallery> File:Miata Rear.jpg|Rear view of the 1990 Mazday Miata. </gallery> ==History== '''12/18/2020:''' The Miata was added to the game. It was originally a 2002 (NB / 2nd gen.) model. '''5/14/2021:''' The Miata was remodeled. It was changed to a 1990 (NA / 1st gen.) model and its performance stats were changed accordingly. <gallery> File:2002Miata.jpg|The 2002 Mazday Miata, prior to the 5/14/2021 remodel. ([https://www.youtube.com/watch?v=nwUzd0ltFSM Photo credit]) </gallery> 4a594651290d8cc5e54abea5a165998c9adf0d6c File:Oldcorolla.jpg 6 2398 3595 2023-10-03T02:53:05Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2020 Corolla Front.jpg 6 1396 3596 1863 2023-10-03T02:53:45Z SWWebster 20 SWWebster uploaded a new version of [[File:2020 Corolla Front.jpg]] wikitext text/x-wiki photo by JordynStar b4f0d4f75a35c34e7af7e3d69bbaf044b8e7e07e 3597 3596 2023-10-03T02:53:58Z SWWebster 20 Blanked the page wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:2020 Corolla Rear.jpg 6 1397 3598 1865 2023-10-03T02:54:41Z SWWebster 20 SWWebster uploaded a new version of [[File:2020 Corolla Rear.jpg]] wikitext text/x-wiki photo by JordynStar b4f0d4f75a35c34e7af7e3d69bbaf044b8e7e07e 3599 3598 2023-10-03T02:54:51Z SWWebster 20 Blanked the page wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2020 Toyoto Corolla 0 67 3600 1864 2023-10-03T02:55:06Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.jpg|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla|limited=0|electric=0}} The 2020 Toyoto Corolla is a five door hatchback produced by [[Toyoto|Toyoto.]] == Stats == The Corolla has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} == Gallery == <gallery> File:2020 Corolla Rear.jpg|2020 Corolla Rear </gallery> ==History== '''09/14/2020:''' The Corolla was added to the game. '''6/11/2022:''' The Corolla was remodeled. <gallery> File:Oldcorolla.jpg|The Corolla prior to the 6/11/2022 remodel. </gallery> 1a18c8a4f9f4a432f916166793618f4c100de028 3601 3600 2023-10-03T02:56:36Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.jpg|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla (12th gen.)|limited=0|electric=0}} The 2020 Toyoto Corolla is a five door hatchback produced by [[Toyoto|Toyoto.]] It can be purchased from the dealership for $23,415. == Stats == The Corolla has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} == Gallery == <gallery> File:2020 Corolla Rear.jpg|2020 Corolla Rear </gallery> ==History== '''09/14/2020:''' The Corolla was added to the game. '''6/11/2022:''' The Corolla was remodeled. <gallery> File:Oldcorolla.jpg|The Corolla prior to the 6/11/2022 remodel. </gallery> 617e9587484257a39fa420a44c3dfcba239c3eec File:9-25-2020Promo.jpg 6 2400 3603 2023-10-03T04:43:49Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Naan Z Performance 0 1158 3606 1496 2023-10-03T04:55:50Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2023 Naan Z Performance |image=Z35_Front.jpg |make=Naan |type=Coupe |price=$51,015 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Z_(RZ34) |rlname=Nissan Z (RZ34) |limited=0 |electric=0 }} The 2023 Naan Z Performance is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $51,015. ==Stats== The Z has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=400|tqval=350|whval=3536|spdval=155|drv=RWD}} {{Maxstats|hpval=1254|tqval=1183|whval=3036|spdval=196}} ==Gallery== <gallery> File:Z35_Rear.jpg|Rear view of the 2023 Naan Z Performance. </gallery> ==History== '''9/25/2020:''' The Z was added to the game. It was originally a 2021 prototype model. '''8/24/2022:''' The Z was remodeled and changed to a 2023 production model. <gallery> File:9-25-2020Promo.jpg|The 2021 Naan Proto 400Z can be seen in a promo image from the 9/25/2020 update. </gallery> 0d26ed92ed17a95bd52d0dddaaed1d0bf1cf7111 3607 3606 2023-10-03T04:56:44Z SWWebster 20 /* History */ wikitext text/x-wiki {{Carinfo |name=2023 Naan Z Performance |image=Z35_Front.jpg |make=Naan |type=Coupe |price=$51,015 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Z_(RZ34) |rlname=Nissan Z (RZ34) |limited=0 |electric=0 }} The 2023 Naan Z Performance is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $51,015. ==Stats== The Z has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=400|tqval=350|whval=3536|spdval=155|drv=RWD}} {{Maxstats|hpval=1254|tqval=1183|whval=3036|spdval=196}} ==Gallery== <gallery> File:Z35_Rear.jpg|Rear view of the 2023 Naan Z Performance. </gallery> ==History== '''9/25/2020:''' The Z was added to the game. It was originally a 2021 prototype model called the Proto 400Z. '''8/24/2022:''' The Z was remodeled and changed to a 2023 production model. <gallery> File:9-25-2020Promo.jpg|The 2021 Naan Proto 400Z can be seen in a promo image from the 9/25/2020 update. </gallery> 920e5bebb971de327721db7519033519d1a9fe0a File:CT5Base.jpg 6 2401 3608 2023-10-03T05:05:53Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2022 Cadillic CT5-V Blackwing 0 701 3609 992 2023-10-03T05:06:42Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2022 Cadillic CT5-V Blackwing |image=CT5_Front.jpg |make=Cadillic |type=Sedan |price=$95,545 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CT5#CT5-V_Blackwing |rlname=Cadillac CT5-V Blackwing |limited=0 |electric=0 }} The 2022 Cadillic CT5-V Blackwing is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $95,545. ==Stats== The CT5-V Blackwing has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=668|tqval=659|whval=4123|spdval=205|drv=RWD}} {{Maxstats|hpval=1436|tqval=1048|whval=3623|spdval=230}} ==Gallery== <gallery> File:CT5_Rear.jpg|Rear view of the 2022 Cadillic CT5-V Blackwing. </gallery> ==History== '''9/7/2020:''' The 2020 Cadillic CT5 was added to the game. '''10/8/2021:''' The 2020 Cadillic CT5 was replaced with the 2022 Cadillic CT5-V Blackwing. <gallery> File:CT5Base.jpg|The 2020 Cadillic CT5. </gallery> 71160fd1adf82f74859e69419ef909cf2af3fecb File:Demon170 Front.jpg 6 2402 3610 2023-11-01T23:49:20Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Demon170 Rear.jpg 6 2403 3611 2023-11-01T23:49:33Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Demon170 Plate.jpg 6 2404 3612 2023-11-01T23:49:43Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2023 Dodje Challenger Demon 170 0 2405 3613 2023-11-01T23:49:50Z SWWebster 20 Created page with " {{Carinfo |name=2023 Dodje Challenger Demon 170 |image=Demon170_Front.jpg |make=Dodje |type=Coupe |price=Free |avail=Reward for finishing the Halloween 2023 event |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger |rlname=2023 Dodge Challenger SRT Demon 170 |limited=1 |electric=0 }} The 2023 Dodje Challenger Demon 170 is a two door coupe produced by [[Dodje]]. It was given to players after completing the Halloween 2023 event. ==Stats== The Challenger Demon 170 ha..." wikitext text/x-wiki {{Carinfo |name=2023 Dodje Challenger Demon 170 |image=Demon170_Front.jpg |make=Dodje |type=Coupe |price=Free |avail=Reward for finishing the Halloween 2023 event |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger |rlname=2023 Dodge Challenger SRT Demon 170 |limited=1 |electric=0 }} The 2023 Dodje Challenger Demon 170 is a two door coupe produced by [[Dodje]]. It was given to players after completing the Halloween 2023 event. ==Stats== The Challenger Demon 170 has 2 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=1025|tqval=945|whval=4268|spdval=211|drv=RWD}} {{Maxstats|hpval=1845|tqval=1935|whval=3768|spdval=232}} ==Gallery== <gallery> File:Demon170_Rear.jpg|Rear view of the 2023 Dodje Challenger Demon 170. File:Demon170_Plate.jpg|Front license plate. </gallery> 399c3b31b60a0bdd99f12b91f1b80516a71a9b36 File:S2000 Front.jpg 6 989 3614 1320 2023-11-02T00:08:57Z SWWebster 20 SWWebster uploaded a new version of [[File:S2000 Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2000 Rear.jpg 6 990 3615 1321 2023-11-02T00:09:42Z SWWebster 20 SWWebster uploaded a new version of [[File:S2000 Rear.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2000 Interior.jpg 6 2406 3616 2023-11-02T00:10:03Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2K Amuze Front.jpg 6 2407 3617 2023-11-02T00:10:12Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 3618 3617 2023-11-02T00:11:10Z SWWebster 20 SWWebster uploaded a new version of [[File:S2K Amuze Front.jpg]] wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2K Amuze Rear.jpg 6 2408 3619 2023-11-02T00:11:38Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2K Ks Front.jpg 6 2409 3620 2023-11-02T00:11:47Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S2K Ks Rear.jpg 6 2410 3621 2023-11-02T00:13:03Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2009 Handa S2000 0 1009 3622 1340 2023-11-02T00:13:38Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2009 Handa S2000 |image=S2000_Front.jpg |make=Handa |type=Coupe |price=$31,986 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Honda_S2000 |rlname=Honda S2000 |limited=0 |electric=0 }} The 2009 Handa S2000 is a two door coupe produced by [[Handa]]. It can be purchased from the dealership for $31,986. ==Stats== The S2000 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=237|tqval=162|whval=2822|spdval=148|drv=RWD}} {{Maxstats|hpval=1110|tqval=990|whval=2302|spdval=174}} {{Bodykits}} <gallery> File:S2K_Amuze_Front.jpg|Amuze (Amuse) File:S2K_Amuze_Rear.jpg|Amuze (Amuse) File:S2K_Ks_Front.jpg|K's Racing (J's Racing) File:S2K_Ks_Rear.jpg|K's Racing (J's Racing) </gallery> ==Gallery== <gallery> File:S2000_Rear.jpg|Rear view of the 2009 Handa S2000. File:S2000_Interior.jpg|Interior shot of the 2009 Handa S2000. </gallery> 838d0f316829d0b0d6d98ea4dc852c4615d996b0 File:S15 BN Front.jpg 6 2411 3623 2023-11-02T00:17:52Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 BN Rear.jpg 6 2412 3624 2023-11-02T00:18:09Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 MK Front.jpg 6 2413 3625 2023-11-02T00:20:18Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 MK Rear.jpg 6 2414 3626 2023-11-02T00:20:30Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 RB Front.jpg 6 2415 3627 2023-11-02T00:20:38Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:S15 RB Rear.jpg 6 2416 3628 2023-11-02T00:20:49Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2002 Naan Silvia S15 0 1177 3629 1516 2023-11-02T00:21:05Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2002 Naan Silvia S15 |image=S15_Front.jpg |make=Naan |type=Coupe |price=$22,750 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Nissan_Silvia#S15 |rlname=Nissan Silvia (S15) |limited=0 |electric=0 }} The 2002 Naan Silvia S15 is a two door coupe produced by [[Naan]]. It can be purchased from the dealership for $22,750. ==Stats== The Silvia S15 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=247|tqval=203|whval=2734|spdval=151|drv=RWD}} {{Maxstats|hpval=1113|tqval=1039|whval=2234|spdval=190}} {{Bodykits}} <gallery> File:S15_BN_Front.jpg|BP Sports (BN Sports) File:S15_BN_Rear.jpg|BP Sports (BN Sports) File:S15_RB_Front.jpg|Rabbit Booster (Rocket Bunny) File:S15_RB_Rear.jpg|Rabbit Booster (Rocket Bunny) File:S15_MK_Front.jpg|Garage Kam (Garage Mak) File:S15_MK_Rear.jpg|Garage Kam (Garage Mak) </gallery> ==Gallery== <gallery> File:S15_Rear.jpg|Rear view of the 2002 Naan Silvia S15. </gallery> b7143607396644ea7871b2e87f191b972b20c5ee File:Grenadier Front.jpg 6 2417 3630 2023-11-02T00:38:35Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Grenadier Rear.jpg 6 2418 3631 2023-11-02T00:38:52Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2024 Astraeus Grenadier 0 2419 3632 2023-11-02T00:39:53Z SWWebster 20 Created page with " {{Carinfo |name=2024 Astraeus Grenadier |image=Grenadier_Front.jpg |make=Astraeus |type=SUV |price=$94,095 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ineos_Grenadier |rlname=Ineos Grenadier |limited=0 |electric=0 }} The 2024 Astraeus Grenadier is a four door SUV produced by [[Astraeus]]. It can be purchased from the dealership for $94,095. ==Stats== The Grenadier has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=24..." wikitext text/x-wiki {{Carinfo |name=2024 Astraeus Grenadier |image=Grenadier_Front.jpg |make=Astraeus |type=SUV |price=$94,095 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ineos_Grenadier |rlname=Ineos Grenadier |limited=0 |electric=0 }} The 2024 Astraeus Grenadier is a four door SUV produced by [[Astraeus]]. It can be purchased from the dealership for $94,095. ==Stats== The Grenadier has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=245|tqval=406|whval=6050|spdval=105|drv=AWD}} {{Maxstats|hpval=904|tqval=1671|whval=5375|spdval=182}} ==Gallery== <gallery> File:Grenadier_Rear.jpg|Rear view of the 2024 Astraeus Grenadier. </gallery> d9791fad9f83de6b18ff93966d85edbfc8ddc3e1 File:Quartermaster Front.jpg 6 2420 3633 2023-11-02T01:10:36Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Quartermaster Rear.jpg 6 2421 3634 2023-11-02T01:10:53Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2024 Astraeus Grenadier Quartermaster 0 2422 3635 2023-11-02T01:11:30Z SWWebster 20 Created page with " {{Carinfo |name=2024 Astraeus Grenadier Quartermaster |image=Quartermaster_Front.jpg |make=Astraeus |type=Pickup |price=$97,595 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ineos_Grenadier |rlname=Ineos Grenadier |limited=0 |electric=0 }} The 2024 Astraeus Grenadier Quartermaster is a four door truck produced by [[Astraeus]]. It can be purchased from the dealership for $97,595. ==Stats== The Grenadier Quartermaster has 5 seats and a..." wikitext text/x-wiki {{Carinfo |name=2024 Astraeus Grenadier Quartermaster |image=Quartermaster_Front.jpg |make=Astraeus |type=Pickup |price=$97,595 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Ineos_Grenadier |rlname=Ineos Grenadier |limited=0 |electric=0 }} The 2024 Astraeus Grenadier Quartermaster is a four door truck produced by [[Astraeus]]. It can be purchased from the dealership for $97,595. ==Stats== The Grenadier Quartermaster has 5 seats and a fuel capacity of 24 gallons. {{Stockstats|hpval=245|tqval=406|whval=6050|spdval=105|drv=AWD}} {{Maxstats|hpval=904|tqval=1671|whval=5375|spdval=182}} ==Gallery== <gallery> File:Quartermaster_Rear.jpg|Rear view of the 2024 Astraeus Grenadier Quartermaster. </gallery> dab777ce96910c29e326cc6a5675c2715793319a File:C5Vette Front.jpg 6 2423 3636 2023-11-02T01:21:09Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:C5Vette Rear.jpg 6 2424 3637 2023-11-02T01:21:21Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2004 Chavy Corvette Z06 0 2425 3638 2023-11-02T01:21:49Z SWWebster 20 Created page with " {{Carinfo |name=2004 Chavy Corvette Z06 |image=C5Vette_Front.jpg |make=Chavy |type=Coupe |price=$17,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C5) |rlname=Chevrolet Corvette (C5) |limited=0 |electric=0 }} The 2004 Chavy Corvette Z06 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $17,950. ==Stats== The Corvette Z06 has 2 seats and a fuel capacity of 16 gallons. {{Stock..." wikitext text/x-wiki {{Carinfo |name=2004 Chavy Corvette Z06 |image=C5Vette_Front.jpg |make=Chavy |type=Coupe |price=$17,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Corvette_(C5) |rlname=Chevrolet Corvette (C5) |limited=0 |electric=0 }} The 2004 Chavy Corvette Z06 is a two door coupe produced by [[Chavy]]. It can be purchased from the dealership for $17,950. ==Stats== The Corvette Z06 has 2 seats and a fuel capacity of 16 gallons. {{Stockstats|hpval=405|tqval=400|whval=3117|spdval=171|drv=RWD}} {{Maxstats|hpval=1061|tqval=908|whval=2617|spdval=215}} ==Gallery== <gallery> File:C5Vette_Rear.jpg|Rear view of the 2004 Chavy Corvette Z06. </gallery> 107e5b30bd1a1b848d6c6af3922ad430edb578bd File:14Chal Rear.jpg 6 2426 3639 2023-11-02T01:35:08Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:14Chal Front.jpg 6 2427 3640 2023-11-02T01:35:17Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2014 Dodje Challenger SRT-8 392 0 2428 3641 2023-11-02T01:35:37Z SWWebster 20 Created page with " {{Carinfo |name=2014 Dodje Challenger SRT-8 392 |image=14Chal_Front.jpg |make=Dodje |type=Coupe |price=$27,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2014 Dodje Challenger SRT-8 392 is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $27,900. ==Stats== The Challenger SRT-8..." wikitext text/x-wiki {{Carinfo |name=2014 Dodje Challenger SRT-8 392 |image=14Chal_Front.jpg |make=Dodje |type=Coupe |price=$27,900 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Challenger#Third_generation_(2008%E2%80%93present) |rlname=Dodge Challenger (3rd gen.) |limited=0 |electric=0 }} The 2014 Dodje Challenger SRT-8 392 is a two door coupe produced by [[Dodje]]. It can be purchased from the dealership for $27,900. ==Stats== The Challenger SRT-8 392 has 4 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=470|tqval=470|whval=4171|spdval=186|drv=RWD}} {{Maxstats|hpval=1445|tqval=1444|whval=3671|spdval=260}} ==Gallery== <gallery> File:14Chal_Rear.jpg|Rear view of the 2014 Dodje Challenger SRT-8 392. </gallery> 9c429a6b6970a7f6ce1bbd96d8d5c8dc91425f3a File:G35Coupe Front.jpg 6 2429 3642 2023-11-02T01:44:07Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G35Coupe Rear.jpg 6 2430 3643 2023-11-02T01:44:16Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2004 Endless G35 Coupe 0 2431 3644 2023-11-02T01:44:50Z SWWebster 20 Created page with " {{Carinfo |name=2004 Endless G35 Coupe |image=G35Coupe_Front.jpg |make=Endless |type=Coupe |price=$12,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Infiniti_G_Line#Third_generation_(V35;_2002) |rlname=Infiniti G35 |limited=0 |electric=0 }} The 2004 Endless G35 Coupe is a two door coupe produced by [[Endless]]. It can be purchased from the dealership for $12,950. ==Stats== The G35 Coupe has 4 seats and a fuel capacity of 20 gallons..." wikitext text/x-wiki {{Carinfo |name=2004 Endless G35 Coupe |image=G35Coupe_Front.jpg |make=Endless |type=Coupe |price=$12,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Infiniti_G_Line#Third_generation_(V35;_2002) |rlname=Infiniti G35 |limited=0 |electric=0 }} The 2004 Endless G35 Coupe is a two door coupe produced by [[Endless]]. It can be purchased from the dealership for $12,950. ==Stats== The G35 Coupe has 4 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=298|tqval=260|whval=3512|spdval=154|drv=RWD}} {{Maxstats|hpval=1209|tqval=1140|whval=3012|spdval=192}} ==Gallery== <gallery> File:G35Coupe_Rear.jpg|Rear view of the 2004 Endless G35 Coupe. </gallery> 582a708ac08630f5226002e3fb93523ea5c66cb1 File:G35 Front.jpg 6 2432 3645 2023-11-02T01:56:19Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:G35 Rear.jpg 6 2433 3646 2023-11-02T01:56:31Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2004 Endless G35 0 2434 3647 2023-11-02T01:56:59Z SWWebster 20 Created page with " {{Carinfo |name=2004 Endless G35 |image=G35_Front.jpg |make=Endless |type=Sedan |price=$8,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Infiniti_G_Line#Third_generation_(V35;_2002) |rlname=Infiniti G35 |limited=0 |electric=0 }} The 2004 Endless G35 is a four door sedan produced by [[Endless]]. It can be purchased from the dealership for $8,950. ==Stats== The G35 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=26..." wikitext text/x-wiki {{Carinfo |name=2004 Endless G35 |image=G35_Front.jpg |make=Endless |type=Sedan |price=$8,950 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Infiniti_G_Line#Third_generation_(V35;_2002) |rlname=Infiniti G35 |limited=0 |electric=0 }} The 2004 Endless G35 is a four door sedan produced by [[Endless]]. It can be purchased from the dealership for $8,950. ==Stats== The G35 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=260|tqval=260|whval=3336|spdval=147|drv=RWD}} {{Maxstats|hpval=1148|tqval=992|whval=2836|spdval=182}} ==Gallery== <gallery> File:G35_Rear.jpg|Rear view of the 2004 Endless G35. </gallery> 7d59edb0dc2864ecc2cacf92e9044a0f1d69ce55 File:CherokeeSRT Front.jpg 6 2435 3648 2023-11-02T02:20:41Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:CherokeeSRT Rear.jpg 6 2436 3649 2023-11-02T02:20:51Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2010 Jeff Grand Cherokee SRT-8 0 2437 3650 2023-11-02T02:22:31Z SWWebster 20 Created page with " {{Carinfo |name=2010 Jeff Grand Cherokee SRT-8 |image=CherokeeSRT_Front.jpg |make=Jeff |type=Sedan |price=$17,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Grand_Cherokee_(WK)#SRT-8 |rlname=Jeep Grand Cherokee SRT-8 |limited=0 |electric=0 }} The 2010 Jeff Grand Cherokee SRT-8 is a four door SUV produced by [[Jeff]]. It can be purchased from the dealership for $17,999. ==Stats== The Grand Cherokee SRT-8 has 5 seats and a fuel..." wikitext text/x-wiki {{Carinfo |name=2010 Jeff Grand Cherokee SRT-8 |image=CherokeeSRT_Front.jpg |make=Jeff |type=Sedan |price=$17,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Grand_Cherokee_(WK)#SRT-8 |rlname=Jeep Grand Cherokee SRT-8 |limited=0 |electric=0 }} The 2010 Jeff Grand Cherokee SRT-8 is a four door SUV produced by [[Jeff]]. It can be purchased from the dealership for $17,999. ==Stats== The Grand Cherokee SRT-8 has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=420|tqval=420|whval=4819|spdval=150|drv=AWD}} {{Maxstats|hpval=954|tqval=847|whval=4319|spdval=201}} ==Gallery== <gallery> File:CherokeeSRT_Rear.jpg|Rear view of the 2010 Jeff Grand Cherokee SRT-8. </gallery> efa5d96230ec372ef81d5e1ee515b03893e1c29b 3651 3650 2023-11-02T02:25:51Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2010 Jeff Grand Cherokee SRT-8 |image=CherokeeSRT_Front.jpg |make=Jeff |type=SUV |price=$17,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Jeep_Grand_Cherokee_(WK)#SRT-8 |rlname=Jeep Grand Cherokee SRT-8 |limited=0 |electric=0 }} The 2010 Jeff Grand Cherokee SRT-8 is a four door SUV produced by [[Jeff]]. It can be purchased from the dealership for $17,999. ==Stats== The Grand Cherokee SRT-8 has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=420|tqval=420|whval=4819|spdval=150|drv=AWD}} {{Maxstats|hpval=954|tqval=847|whval=4319|spdval=201}} ==Gallery== <gallery> File:CherokeeSRT_Rear.jpg|Rear view of the 2010 Jeff Grand Cherokee SRT-8. </gallery> 520fddc0be5219e7bf9097ca3a8943ad496dc3b7 File:1G CTSV Front.jpg 6 2438 3652 2023-11-02T02:32:10Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:1G CTSV Rear.jpg 6 2439 3653 2023-11-02T02:32:20Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2007 Cadillic CTS-V 0 2440 3654 2023-11-02T02:35:21Z SWWebster 20 Created page with " {{Carinfo |name=2007 Cadillic CTS-V |image=1G_CTSV_Front.jpg |make=Cadillic |type=Sedan |price=$17,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2004%E2%80%932007) |rlname=Cadillac CTS-V (1st gen.) |limited=0 |electric=0 }} The 2007 Cadillic CTS-V is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $17,995. ==Stats== The CTS-V has 5 seats and a fuel capacity of 18 gallons...." wikitext text/x-wiki {{Carinfo |name=2007 Cadillic CTS-V |image=1G_CTSV_Front.jpg |make=Cadillic |type=Sedan |price=$17,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Cadillac_CTS#CTS-V_(2004%E2%80%932007) |rlname=Cadillac CTS-V (1st gen.) |limited=0 |electric=0 }} The 2007 Cadillic CTS-V is a four door sedan produced by [[Cadillic]]. It can be purchased from the dealership for $17,995. ==Stats== The CTS-V has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=400|tqval=395|whval=3849|spdval=159|drv=RWD}} {{Maxstats|hpval=1089|tqval=1017|whval=3349|spdval=230}} ==Gallery== <gallery> File:1G_CTSV_Rear.jpg|Rear view of the 2007 Cadillic CTS-V. </gallery> 21743642e6244e8d91e1ac9c9baa4c569e917173 File:89Caprice Front.jpg 6 2441 3655 2023-11-02T02:43:00Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:89Caprice Rear.jpg 6 2442 3656 2023-11-02T02:43:12Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 1989 Chavy Caprice 0 2443 3657 2023-11-02T02:43:47Z SWWebster 20 Created page with " {{Carinfo |name=1989 Chavy Caprice |image=89Caprice_Front.jpg |make=Chavy |type=Sedan |price=$11,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Caprice#Third_generation_(1977%E2%80%931990) |rlname=Chevrolet Caprice (3rd gen.) |limited=0 |electric=0 }} The 1989 Chavy Caprice is a four door sedan produced by [[Chavy]]. It can be purchased from the dealership for $11,999. ==Stats== The Caprice has 5 seats and a fuel capacity..." wikitext text/x-wiki {{Carinfo |name=1989 Chavy Caprice |image=89Caprice_Front.jpg |make=Chavy |type=Sedan |price=$11,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Caprice#Third_generation_(1977%E2%80%931990) |rlname=Chevrolet Caprice (3rd gen.) |limited=0 |electric=0 }} The 1989 Chavy Caprice is a four door sedan produced by [[Chavy]]. It can be purchased from the dealership for $11,999. ==Stats== The Caprice has 5 seats and a fuel capacity of 25 gallons. {{Stockstats|hpval=170|tqval=250|whval=3642|spdval=128|drv=RWD}} {{Maxstats|hpval=1089|tqval=1017|whval=3349|spdval=175}} ==Gallery== <gallery> File:89Caprice_Rear.jpg|Rear view of the 1989 Chavy Caprice. </gallery> 01693b47c46f46c9b08913595f855b233b9ff7be File:10Charger Front.jpg 6 2444 3658 2023-11-02T02:56:57Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:10Charger Rear.jpg 6 2445 3659 2023-11-02T02:57:11Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2010 Dodje Charger SRT-8 0 2446 3660 2023-11-02T02:57:40Z SWWebster 20 Created page with " {{Carinfo |name=2010 Dodje Charger SRT-8 |image=10Charger_Front.jpg |make=Dodje |type=Sedan |price=$14,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Caprice#Third_generation_(1977%E2%80%931990) |rlname=Chevrolet Caprice (3rd gen.) |limited=0 |electric=0 }} The 2010 Dodje Charger SRT-8 is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $14,999. ==Stats== The Charger SRT-8 has 5 seats a..." wikitext text/x-wiki {{Carinfo |name=2010 Dodje Charger SRT-8 |image=10Charger_Front.jpg |make=Dodje |type=Sedan |price=$14,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Chevrolet_Caprice#Third_generation_(1977%E2%80%931990) |rlname=Chevrolet Caprice (3rd gen.) |limited=0 |electric=0 }} The 2010 Dodje Charger SRT-8 is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $14,999. ==Stats== The Charger SRT-8 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=425|tqval=420|whval=4160|spdval=173|drv=RWD}} {{Maxstats|hpval=1392|tqval=1048|whval=3660|spdval=224}} ==Gallery== <gallery> File:10Charger_Rear.jpg|Rear view of the 2010 Dodje Charger SRT-8. </gallery> d417240e1eeef6f54b48670cbcb42fe3b2973966 3661 3660 2023-11-02T03:02:25Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2010 Dodje Charger SRT-8 |image=10Charger_Front.jpg |make=Dodje |type=Sedan |price=$14,999 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Charger_(2005)#SRT-8 |rlname=Dodge Charger SRT-8 |limited=0 |electric=0 }} The 2010 Dodje Charger SRT-8 is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $14,999. ==Stats== The Charger SRT-8 has 5 seats and a fuel capacity of 20 gallons. {{Stockstats|hpval=425|tqval=420|whval=4160|spdval=173|drv=RWD}} {{Maxstats|hpval=1392|tqval=1048|whval=3660|spdval=224}} ==Gallery== <gallery> File:10Charger_Rear.jpg|Rear view of the 2010 Dodje Charger SRT-8. </gallery> aef8ceaa88c40ba530fa018f546ae007f8c77bea File:Magnum Front.jpg 6 2447 3662 2023-11-02T03:05:57Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Magnum Rear.jpg 6 2448 3663 2023-11-02T03:06:08Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2008 Dodje Magnum SRT-8 0 2449 3664 2023-11-02T03:06:37Z SWWebster 20 Created page with " {{Carinfo |name=2008 Dodje Magnum SRT-8 |image=Magnum_Front.jpg |make=Dodje |type=Sedan |price=$38,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Magnum#Chrysler_LX_platform_(2005%E2%80%932008) |rlname=Dodge Magnum SRT-8 |limited=0 |electric=0 }} The 2008 Dodje Magnum SRT-8 is a four door wagon produced by [[Dodje]]. It can be purchased from the dealership for $38,500. ==Stats== The Magnum SRT-8 has 5 seats and a fuel capacit..." wikitext text/x-wiki {{Carinfo |name=2008 Dodje Magnum SRT-8 |image=Magnum_Front.jpg |make=Dodje |type=Sedan |price=$38,500 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Magnum#Chrysler_LX_platform_(2005%E2%80%932008) |rlname=Dodge Magnum SRT-8 |limited=0 |electric=0 }} The 2008 Dodje Magnum SRT-8 is a four door wagon produced by [[Dodje]]. It can be purchased from the dealership for $38,500. ==Stats== The Magnum SRT-8 has 5 seats and a fuel capacity of 18 gallons. {{Stockstats|hpval=425|tqval=420|whval=4259|spdval=169|drv=RWD}} {{Maxstats|hpval=1392|tqval=1048|whval=3759|spdval=216}} ==Gallery== <gallery> File:Magnum_Rear.jpg|Rear view of the 2008 Dodje Magnum SRT-8. </gallery> 394d3cec1beaecb95f8c568d44e2ddb0f23e5662 File:SRT4 Front.jpg 6 2450 3665 2023-11-02T03:14:03Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:SRT4 Rear.jpg 6 2451 3666 2023-11-02T03:14:15Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 2004 Dodje Neon SRT-4 0 2452 3667 2023-11-02T03:14:43Z SWWebster 20 Created page with " {{Carinfo |name=2004 Dodje Neon SRT-4 |image=SRT4_Front.jpg |make=Dodje |type=Sedan |price=$12,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Neon_SRT-4 |rlname=Dodge Neon SRT-4 |limited=0 |electric=0 }} The 2004 Dodje Neon SRT-4 is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $12,995. ==Stats== The Neon SRT-4 has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=230|tqval=..." wikitext text/x-wiki {{Carinfo |name=2004 Dodje Neon SRT-4 |image=SRT4_Front.jpg |make=Dodje |type=Sedan |price=$12,995 |avail=Can be purchased at the dealership |rllink=https://en.wikipedia.org/wiki/Dodge_Neon_SRT-4 |rlname=Dodge Neon SRT-4 |limited=0 |electric=0 }} The 2004 Dodje Neon SRT-4 is a four door sedan produced by [[Dodje]]. It can be purchased from the dealership for $12,995. ==Stats== The Neon SRT-4 has 5 seats and a fuel capacity of 12 gallons. {{Stockstats|hpval=230|tqval=250|whval=2899|spdval=152|drv=FWD}} {{Maxstats|hpval=1054|tqval=1011|whval=2399|spdval=168}} ==Gallery== <gallery> File:SRT4_Rear.jpg|Rear view of the 2004 Dodje Neon SRT-4. </gallery> 91bb4fcff31c72758e151c342a213994c65a1bb7 File:Face-smile.png 6 2453 3668 2023-11-02T03:25:50Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Template:Perfect 10 2454 3669 2023-11-02T03:27:31Z SWWebster 20 Created page with "<p style="background-color:#d3eddd; padding: 10px; border: 1px solid #63b07c;">[[File:Face-smile.png|24px]] &nbsp; This page is perfect.</p>" wikitext text/x-wiki <p style="background-color:#d3eddd; padding: 10px; border: 1px solid #63b07c;">[[File:Face-smile.png|24px]] &nbsp; This page is perfect.</p> b955e9ba47b7a57200bdf019e8a06d614d470943 BSRP SUPERCAR 0 2455 3670 2023-11-02T03:27:50Z SWWebster 20 Created page with "{{Perfect}} {{Carinfo2|name=BSRP SUPERCAR|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=?????|avail=?????|rllink=https://strigid.miraheze.org/wiki/BSRP_SUPERCAR|rlname=BSRP SUPERCAR|limited=0|electric=0}} The BSRP SUPERCAR is a GCC^ whiteline certified five door hatchback produced by [[Mazday|Mazday.]] ==Stats== The BSRP SUPERCAR has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=9999|tqval=9999|whval=..." wikitext text/x-wiki {{Perfect}} {{Carinfo2|name=BSRP SUPERCAR|image=Mazday3_Front.jpg|make=Mazday|type=Hatchback|price=?????|avail=?????|rllink=https://strigid.miraheze.org/wiki/BSRP_SUPERCAR|rlname=BSRP SUPERCAR|limited=0|electric=0}} The BSRP SUPERCAR is a GCC^ whiteline certified five door hatchback produced by [[Mazday|Mazday.]] ==Stats== The BSRP SUPERCAR has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=9999|tqval=9999|whval=500|spdval=500|drv=AWD}} ==Gallery== <gallery> File:Mazday3 Rear.jpg|Rear view of the BSRP SUPERCAR. </gallery> 6dae410eff9778cdb4714b258ca694db76341e93 Peter Griffin 0 2395 3671 3584 2023-11-02T03:28:02Z SWWebster 20 wikitext text/x-wiki {{Perfect}} {{Carinfo2 |name=Peter Griffin |image=peter.png |make=Griffin |type=Family guy |price=None |avail=Not right now |rllink=https://en.wikipedia.org/wiki/Peter_Griffin |rlname=Peter Griffin |limited=0 |electric=0 }} Peter Löwenbräu Griffin, Sr., born Justin Peter Griffin according to his birth records in "Quagmire's Mom", is a man of Irish descent currently residing in Quahog, Rhode Island with his wife Lois Griffin. 99291ca8d131ba860a1815b16271dfd762d62b61 Template:Randomcar 10 1774 3672 3585 2023-11-02T03:29:20Z SWWebster 20 wikitext text/x-wiki {| class="wikitable" |+ <div class="rctext"> [https://strigid.miraheze.org/w/index.php?title=Main_Page&action=purge Show me something else... (purge)]</div> |- | {{raw:Wikipedia:Transclude random excerpt|1= 2010 Aero Atom V8 |2= 2017 Aero Nomad Tactical |3= 1966 Alpha Giulia Sprint GTA |4= 2010 Alpha 8C Competizione |5= 2020 Alpha Stelvio Quadrifolgio |6= 2021 Alpha Giulia Quadrifolgio |7= 1982 AMC Delorean |8= 2011 Aristo M600 |9= 2024 Astraeus Grenadier |10= 2024 Astraeus Grenadier Quartermaster |11= 2011 Atone Mira V12 Vantage |12= 2011 Atone-Mira One-77 |13= 2018 Atone Mira DB11 |14= 2020 Atone Mira DBS Superleggera |15= 2021 Atone Mira Vantage |16= 2021 Atone-Mira DBX |17= 2022 Atone-Mira Valkyrie |18= 1998 Axura Integra Type R |19= 2017 Axura NSX |20= 2021 Axura RDX |21= 2022 Axura NSX Type S |22= 2019 Banthey Bentayga |23= 2020 Banthey Flying Spur |24= 2015 BMC Mono |25= 1985 BNW M 635CSi |26= 1987 BNW M3 |27= 1996 BNW M3 |28= 2004 BNW M3 |29= 2011 BNW 1M |30= 2013 BNW M3 |31= 2013 BNW M3 GTS |32= 2013 BNW M5 |33= 2018 BNW M2 |34= 2018 BNW M4 |35= 2019 BNW 530i |36= 2019 BNW M5 |37= 2020 BNW S1000RR |38= 2020 BNW X7 |39= 2021 BNW M4 Competition |40= 2021 BNW X6M |41= 2021 BNW Z4 |42= 2022 BNW iX |43= 2023 BNW M2 |44= 2023 BNW M240i |45= 1987 Brick Grand National GNX |46= 2011 Bulatti Veyron Super Sport |47= 2017 Bulatti Chiron |48= 2022 Bulatti Chiron Super Sport 300+ |49= 2007 Cadillic CTS-V |50= 2013 Cadillic CTS-V |51= 2013 Cadillic CTS-V Coupe |52= 2013 Cadillic CTS-V Wagon |53= 2021 Cadillic Escalade |54= 2022 Cadillic CT5-V Blackwing |55= 1967 Chavy Corvette Sting Ray |56= 1969 Chavy Camaro RS/SS |57= 1970 Chavy Nova SS |58= 1989 Chavy Caprice |59= 1993 Chavy Silverado 454 SS |60= 2004 Chavy Corvette Z06 |61= 2012 Chavy Camaro ZL1 |62= 2013 Chavy Corvette ZR1 |63= 2015 Chavy Camaro Z/28 |64= 2015 Chavy Cruze |65= 2016 Chavy SS |66= 2018 Chavy Camaro ZL1 "The Exorcist" |67= 2018 Chavy Camaro ZL1 1LE |68= 2019 Chavy Corvette Z06 |69= 2020 Chavy Suburban RST |70= 2020 Chavy Tahoe |71= 2020 Chavy Tahoe PPV |72= 2020 Chavy Tahoe PPV Undercover |73= 2021 Chavy Camaro 2SS |74= 2022 Chavy Corvette |75= 2022 Chavy Silverado 2500HD |76= 2022 Chavy Silverado 3500HD |77= 2023 Chavy Corvette Z06 |78= 2023 Chavy Corvette Z06 Z07 Package |79= 2019 Chrystal Pacifica |80= 2016 Conquest Bonneville T120 |81= 2021 Conquest Street Triple RS |82= 2010 CSS Ultimate Aero |83= 2013 CTM X-Bow R |84= 2019 CTM 1290 Superduke |85= 2015 Dacati 899 Panigale |86= 1987 DeTomato Pantera GT5-S |87= 1969 Dodje Daytona |88= 1970 Dodje Charger R/T |89= 1971 Dodje Challenger R/T |90= 1998 Dodje Viper GTS |91= 2004 Dodje Neon SRT-4 |92= 2006 Dodje Ram SRT-10 |93= 2008 Dodje Grand Caravan |94= 2008 Dodje Magnum SRT-8 |95= 2010 Dodje Charger SRT-8 |96= 2010 Dodje Viper SRT-10 |97= 2010 Dodje Viper SRT-10 ACR-X |98= 2013 Dodje Dart GT |99= 2014 Dodje Challenger SRT-8 392 |100= 2017 Dodje Viper ACR Extreme |101= 2017 Dodje Viper SRT |102= 2018 Dodje Challenger Badcat |103= 2018 Dodje Challenger Demon |104= 2020 Dodje Charger Badcat |105= 2020 Dodje Charger Badcat Daytona |106= 2020 Dodje Charger Badcat Pursuit |107= 2020 Dodje Charger Badcat Pursuit Undercover |108= 2020 Dodje Charger Badcat Widebody |109= 2020 Dodje Charger Pursuit |110= 2020 Dodje Charger Pursuit Undercover |111= 2020 Dodje Ram Rebel |112= 2021 Dodje Durango SRT Badcat |113= 2021 Dodje RAM TRX |114= 2022 Dodje Challenger Badcat Redeye Widebody |115= 2022 Dodje Challenger Scatpack Widebody |116= 2023 Dodje Challenger Demon 170 |117= 2011 Edison Roadster Sport 2.5 |118= 2020 Edison Cybertruck |119= 2020 Edison Model 3 |120= 2020 Edison Model X |121= 2020 Edison Model Y |122= 2021 Edison Model S |123= 2021 Edison Roadster |124= 2004 Endless G35 |125= 2004 Endless G35 Coupe |126= 2011 Endless G37 EPL |127= 2013 Esperanza GTA Spano |128= 2016 Ethanol Venom GT |129= 2021 Ethanol Venom F5 |130= 1956 Fard F-100 |131= 1969 Fard Mustang Boss 427 |132= 1986 Fard RS200 Evolution |133= 1993 Fard Mustang GT LX |134= 1993 Fard Mustang SVT Cobra R |135= 1995 Fard SVT F-150 Lightning |136= 1999 Fard SVT F-150 Lightning |137= 2000 Fard Mustang SVT Cobra R |138= 2004 Fard Mustang SVT Cobra |139= 2005 Fard GT |140= 2005 Fard Mustang GT |141= 2011 Fard Crown Victoria |142= 2011 Fard Crown Victoria Police Interceptor |143= 2011 Fard Crown Victoria Police Interceptor Sheriff |144= 2011 Fard Crown Victoria Police Interceptor Undercover |145= 2013 Fard Mustang GT |146= 2013 Fard Mustang GT Convertible |147= 2013 Fard Mustang GT500 Super Snake |148= 2014 Fard Fiesta ST |149= 2016 Fard Police Interceptor Sedan Sheriff |150= 2016 Fard Police Interceptor Sedan Unmarked Sheriff |151= 2016 Fard Taurus |152= 2017 Fard Mustang GT350R |153= 2018 Fard Focus RS |154= 2019 Fard Police Responder Undercover |155= 2019 Fard Ranger |156= 2019 Fard Ranger CSA |157= 2019 Fard Ranger CSU |158= 2020 Fard Explorer |159= 2020 Fard F-450 Fast Response Unit |160= 2020 Fard F150 |161= 2020 Fard F150 Police Responder |162= 2020 Fard Fusion |163= 2020 Fard GT |164= 2021 Fard Expedition |165= 2021 Fard F-250 Superduty |166= 2021 Fard F-450 Superduty |167= 2021 Fard Mustang GT Unmarked |168= 2021 Fard Mustang GT500 Code Red |169= 2021 Fard Police Interceptor Utility |170= 2021 Fard Police Interceptor Utility Sheriff |171= 2021 Fard Police Interceptor Utility Undercover |172= 2021 Fard Police Interceptor Utility Unmarked Sheriff |173= 2022 Fard Bronco 2 Door |174= 2022 Fard Bronco 4-Door |175= 2022 Fard Bronco TRT |176= 2022 Fard F-450 Ambulance |177= 2022 Fard Maverick Lariat |178= 2022 Fard Mustang GT |179= 2022 Fard Mustang TRT Spec 3 |180= 2022 Fard Mustang TRT Spec 5 |181= 1963 Furai 250 GTO |182= 1984 Furai Testarossa |183= 1992 Furai F40 |184= 2014 Furai LaFurai |185= 2015 Furai 458 Italia |186= 2016 Furai F12 |187= 2019 Furai 488 Pista |188= 2019 Furai Portofino |189= 2021 Furai F8 Tributo |190= 2022 Furai SF90 Stradale |191= 1991 GEC Syclone |192= 2020 GEC Sierra 1500 |193= 2021 GEC Yukon |194= 2022 GEC Sierra 2500HD AT4 |195= 2022 GEC Sierra 3500HD |196= 2020 Genesys G70 |197= 2009 Hammer H3 |198= 2009 Hammer H3 Limousine |199= 2021 Hammer EV |200= 1990 Handa VFR750R RC30 |201= 1992 Handa NR750 |202= 1995 Handa Civic Si |203= 1995 Handa NSX |204= 1998 Handa Civic Type R |205= 2000 Handa Civic Si |206= 2005 Handa Integra Type R |207= 2009 Handa S2000 |208= 2011 Handa CR-Z |209= 2018 Handa Civic Type R |210= 2018 Handa CRF1100L |211= 2020 Handa Civic Coupe |212= 2020 Handa Passport |213= 2021 Handa Accord |214= 2021 Handa Odyssey |215= 2022 Handa Civic Hatchback |216= 2023 Handa Civic Type R |217= 2021 Hardley-Movinson Street Rod |218= 2015 Hayunai Genesis Coupe |219= 2019 Hayunai Veloster N |220= 2021 Hayunai Sonata Hybrid |221= 2021 Hayunai Sonata N-Line |222= 2022 Hayunai Ioniq 5 |223= 1990 Hibiscus Carlton |224= 2000 Hibiscus 340R |225= 2011 Hibiscus Evora S |226= 2019 Hibiscus 3-Eleven |227= 2017 Hoosqvarna 701 Supermoto |228= Intercontinental Durastar Heavy Duty Pumper |229= 2010 Jeff Grand Cherokee SRT-8 |230= 2020 Jeff Gladiator |231= 2020 Jeff Trackhawk |232= 2020 Jeff Wrangler |233= 2020 Jeff Wrangler 4-Door |234= 1989 Kawisake ZXR750 |235= 1996 Kawisake Ninja ZX-7RR |236= 2019 Kawisake Ninja H2 |237= 2019 Kawisake ZX-10R SE |238= 2022 Keya Stinger GT2 |239= 2014 Koneggsaga Agera R |240= 2015 Koneggsaga One:1 |241= 1986 Lamburghina Countach 5000 QV |242= 2003 Lamburghina Murcielago Roadster |243= 2008 Lamburghina Gallardo |244= 2009 Lamburghina Reventon Roadster |245= 2010 Lamburghina Murcielago SV |246= 2011 Lamburghina Aventador |247= 2011 Lamburghina Gallardo Superleggera |248= 2018 Lamburghina Huracan Performante |249= 2019 Lamburghina Aventador SVJ |250= 2020 Lamburghina Huracan EVO |251= 2020 Lamburghina Huracan EVO Spyder |252= 2020 Lamburghina Huracan STO |253= 2020 Lamburghina Urus |254= 2022 Lamburghina Countach |255= 1974 Lancer Stratos HF Stradale |256= 2013 Lateraam Seven 620R |257= 2010 LUF CTR-3 |258= 2012 LUF CTR-3 Clubsport |259= 2022 Lunare Intensa Emozione |260= 2011 Luxuss LFA |261= 2020 Luxuss LS500 |262= 2020 Luxuss RC-F |263= 2021 Luxuss LC500 |264= 1989 Mazday RX-7 Turbo II |265= 1990 Mazday Miata |266= 2002 Mazday RX-7 Sprint-R |267= 2011 Mazday RX-8 |268= 2021 Mazday3 |269= 2005 Mazeri MC-12 |270= 2011 Mazeri Quattroporte GTS |271= 2012 Mazeri GranTurismo MC |272= 1998 McFaren F1 |273= 2015 McFaren 675LT |274= 2015 McFaren P1 |275= 2016 McFaren 650S |276= 2016 McFaren 650S Spider |277= 2017 McFaren 570GT |278= 2020 McFaren 600LT |279= 2020 McFaren GT |280= 2020 McFaren Senna |281= 2020 McFaren Speedtail |282= 2022 McFaren 765LT |283= 1996 Mitsabisha Lancer Evolution GSR |284= 2000 Mitsabishi Lancer Evolution VI Tommy Miettinen Edition |285= 2005 Mitsabisha Lancer Evolution |286= 2014 Mitsabisha Lancer Evolution |287= 2005 Montiac GTO |288= 1990 Muaraci-Bens 190E 2.5-16 Evolution II |289= 2008 Muaraci-Bens CLK63 AGM |290= 2009 Muaraci-Bens SL65 AGM Black Series |291= 2013 Muaraci-Bens SLS AGM Black Series |292= 2014 Muaraci-Bens G63 AGM 6x6 |293= 2018 Muaraci-AGM E63 S |294= 2018 Muaraci-AGM GT R |295= 2019 Muaraci-Bens AGM S-Class Coupe |296= 2019 Muaraci-Bens AGM S-Class Sedan |297= 2019 Muaraci-Maibach Pullman |298= 2020 Muaraci-AGM GT-63s |299= 2021 Muaraci-Bens AGM GT Black Series |300= 2021 Muaraci-Bens G550 |301= 1972 Naan Skyline 2000GT-R |302= 1973 Naan Skyline 2000GT-R |303= 1990 Naan Silvia K's |304= 1991 Naan 180SX |305= 1992 Naan Skyline R32 GTR |306= 1995 Naan 300ZX TT |307= 1995 Naan Skyline R33 GTR |308= 1997 Naan 240SX |309= 2002 Naan Silvia S15 |310= 2002 Naan Skyline R34 GT-R V-Spec II Nür |311= 2005 Naan R34 GT-R Z-Tune |312= 2008 Naan Altima |313= 2009 Naan 350Z |314= 2009 Naan 350Z Nizmo |315= 2017 Naan 370Z |316= 2017 Naan 370Z Nizmo |317= 2021 Naan R35 GTR |318= 2022 Naan Versa |319= 2023 Naan Z Performance |320= 2008 Owdi R8 |321= 2018 Owdi SQ7 |322= 2019 Owdi A6 |323= 2019 Owdi TT-RS |324= 2020 Owdi A7 Sportback |325= 2021 Owdi R8 V10 |326= 2021 Owdi RS5 |327= 2022 Owdi E-Tron GT RS |328= 2022 Owdi RS 3 Sportback |329= 2022 Owdi RS6 Avant |330= 2018 Paijani Huayra |331= 1970 Plywood Roadrunner Superbird |332= 1987 Pohrse 911 Turbo |333= 1987 Pohrse 930 Turbo Slantnose |334= 1991 Pohrse 944 |335= 2012 Pohrse 911 GT2 RS |336= 2015 Pohrse 918 Spyder Roadster |337= 2015 Pohrse 918 Weissach Package |338= 2017 Pohrse 911 GT2 RS |339= 2018 Pohrse 911 GT3 |340= 2018 Pohrse 911 GT3RS |341= 2020 Pohrse 911 Carrera 4S |342= 2020 Pohrse Cayenne Coupe |343= 2021 Pohrse 718 Boxster T |344= 2021 Pohrse 718 Cayman GT4 |345= 2021 Pohrse 718 Cayman GTS 4.0 |346= 2022 Pohrse 911 GT3 |347= 2022 Pohrse 911 GT3 Touring |348= 2022 Pohrse 911 Targa 4S |349= 2022 Pohrse Taycan Turbo S |350= 2023 Pohrse 718 Cayman GT4 RS |351= 2023 Pohrse 911 GT3 RS |352= 2023 Pohrse 911 Turbo S |353= 2016 Range Runner Sport |354= 2020 Range Runner Evoque |355= 2020 Range Runner Velar |356= 2018 Rolls Rayce Cullinan |357= 2019 Rolls Rayce Wraith |358= 2021 Rolls Rayce Ghost |359= 1999 Saaburu WRX STi 22B |360= 2017 Saaburu WRX STI |361= 2020 Saaburu Forester |362= 2007 Salane S7 |363= 1989 Sozooki GSX-R 750RR |364= 2015 Sozooki Hayabusa |365= 2021 Stinger ACS |366= Stuphen Monarch Heavy Rescue Truck |367= 1988 Toyoto 4Runner |368= 2000 Toyoto Supra |369= 2001 Toyoto MR2 |370= 2014 Toyoto FJ Cruiser |371= 2018 Toyoto Tacoma |372= 2019 Toyoto 4Runner TRD-Pro |373= 2019 Toyoto GT86 |374= 2020 Toyoto Avalon TRD |375= 2020 Toyoto Avalon XLE |376= 2020 Toyoto Camry |377= 2020 Toyoto Camry TRD |378= 2020 Toyoto Corolla |379= 2021 Toyoto Prius Prime |380= 2021 Toyoto Supra |381= 2022 Toyoto Tundra TRD-Pro |382= 2023 Toyoto GR Corolla |383= 2023 Toyoto GR Corolla Circuit Edition |384= 2023 Toyoto GR Corolla Morizo Edition |385= 2023 Toyoto Sequoia TRD-Pro |386= 1963 Volkinsen Beetle |387= 1969 Volkinsen Vanagon |388= 2018 Volkinsen Atlas |389= 2021 Volkinsen Golf GTI |390= 2021 Volkinsen Jetta |391= 2008 Vovol C30 T5 |392= 2016 Vovol XC90 T6 R-Design |393= 2022 Vovol C40 Recharge |394= 2010 Xynvo ST1 |395= 2015 Yamiiha FZ-07 |396= 2020 Yamiiha YZF-R1 |397= Peter Griffin |398= BSRP SUPERCAR | paragraphs=1 | files=1 | fileargs=left | errors=1 }} |} <noinclude> <templatedata> { "params": {}, "description": "UPDATING THE CAR LIST\ngrab a list of all cars using the following in the inspect element console:\njQuery.ajax({\n type: \"GET\",\n url: mw.util.wikiScript(\"api\"),\n data: {\n action: \"query\",\n list: \"categorymembers\",\n cmtitle: \"Category:Vehicles\", // Change Category name to your category\n cmlimit: 500,\n format: \"json\"\n }\n}).done(function ($data) {\n if (!$data.error) {\n $data.query.categorymembers.forEach(function ($member) {\n console.log($member.title);\n });\n }\n});\n\nget rid of the debugger eval code lines by replacing them all with nothing in ctrl h\nuse https://nimbletext.com/ with the pattern |$rowNumOne= $row" } </templatedata> </noinclude> 56e32f9c2297f0f7f8f92f3f4f991a3522aea8f8 File:Bigmachineidk.jpg 6 2456 3673 2023-11-02T04:50:53Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Cutout.jpg 6 2457 3674 2023-11-02T04:51:06Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Damnyoulivelikethis.jpg 6 2458 3675 2023-11-02T04:51:13Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Demonmessage.jpg 6 2459 3676 2023-11-02T04:51:21Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Electricavenue.jpg 6 2460 3677 2023-11-02T04:51:32Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Exit.jpg 6 2461 3678 2023-11-02T04:51:39Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:GotIt.jpg 6 2462 3679 2023-11-02T04:51:49Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:HeHungers.jpg 6 2463 3680 2023-11-02T04:51:57Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Lockers.jpg 6 2464 3681 2023-11-02T04:52:06Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Lolkindalikethattvshow.jpg 6 2465 3682 2023-11-02T04:52:14Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Nostalgia.jpg 6 2466 3683 2023-11-02T04:52:24Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Pipes.jpg 6 2467 3684 2023-11-02T04:52:34Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Raft.jpg 6 2468 3685 2023-11-02T04:52:45Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:Somekindaroomidkwhatever.jpg 6 2469 3686 2023-11-02T04:52:54Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TheOrb.jpg 6 2470 3687 2023-11-02T04:53:07Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 File:TheTree.jpg 6 2471 3688 2023-11-02T04:53:18Z SWWebster 20 wikitext text/x-wiki da39a3ee5e6b4b0d3255bfef95601890afd80709 Easter Eggs 0 1233 3689 3310 2023-11-02T04:53:58Z SWWebster 20 wikitext text/x-wiki This page contains easter eggs and other things you may not have noticed while playing SWFL. == Lacy and Skittles == Near the [[Unemployed]] spawn, two statues of a cat and dog can be found. These statues are a memorial to Lacy and Skittles, assumed to be pets of Strigid developers. <gallery> File:LacyAndSkittles.jpg </gallery> == Police Boat == There is a police boat from [https://en.wikipedia.org/wiki/SpongeBob_SquarePants%3A_Revenge_of_the_Flying_Dutchman SpongeBob SquarePants: Revenge of the Flying Dutchman] parked behind a building on the highway near the [[Unemployed]] spawn. <gallery> File:Policeboat.jpg File:PBBuildLoc.jpg|Building location </gallery> == Raft18's Cage == Raft18's cage can be found in the ditch near Dippin' Donuts. Previously, the cage had a Garfield model (a reference to Raft18's Discord profile picture) in it, and players who got too close to the cage would die. On Halloween of 2021, Raft18 escaped from his cage. <gallery> File:RaftCageOld.jpg|Raft18's cage prior to Halloween 2021. File:RaftCageNow.jpg File:RaftCageLoc.jpg|Location </gallery> == The Backroom == Players could get to the backroom through the doors in the back corner of the produce and dairy section in Bubmart. The backroom was completely empty, aside from a drainage pipe in the wall. In the pipe, a T-posing Garfield model with glowing red eyes could be found. Odie and Jon could also be seen lying behind Garfield. Once a player entered the backroom, the only way back out is to reset. Near Halloween of 2022, Raft18 escaped from the backroom. As of the Halloween 2022 update, the backroom can no longer be accessed. <gallery> File:BackroomDoor.jpg|Backroom doors File:Backroom.jpg </gallery> == The Labyrinth == Through the newly-opened doors that previously lead to the backroom, players could enter a hidden server room with a computer and a drainage pipe as seen in the backroom. The computer's monitors showed static, with an image of Raft flickering on the primary monitor. Entering the drainage pipe would bring players to the labyrinth. Raft would chase the player through the labyrinth, and if he touches the player, the player would die. Once a player found their way out, they would be rewarded with the [[2021 Fard Mustang GT500 Code Red]]. The labyrinth can no longer be accessed. <gallery> File:BackroomDoorOpen.jpg|Open backroom doors File:ServerRoomPc.jpg File:RaftMaze.jpg|Raft in the labyrinth File:DevNuke.jpg|CLASSIFIED OBJECT: DEV_NUKE File:LBozo.jpg|"L bozo" sign found in a dead end File:BigFarter1.jpg|big farter File:BigFarter2.jpg File:CodeRed.jpg|The [[2021 Fard Mustang GT500 Code Red|Code Red]] awaiting the player File:CodeRedGui.jpg|Message that appears after obtaining the Code Red </gallery> == Fintech Basement Sublevel 4 == The Halloween 2023 event takes place in Fintech. There is a note on the front desk in Fintech instructing the player to go to basement sublevel 4 due a problem with the server facility's cooling system. The player must read this note in order to access the basement. Upon taking the elevator to the basement, the doors lock behind the player. The player then must pick up a flashlight, find 6 valves and turn them. After finding all 6 valves, the player must find the key to the power room. The key is located in what appears to be Raft's room, located near a rocket. The room can be accessed through a large hole in a wall near the power room. Throughout the basement, Raft will appear and attempt to catch the player. If the player is caught, Raft will kill them and they will be teleported back to the main game. There are red chemlights leading to both the power room and the hole in the wall. Upon taking the power room key from Raft's room, the rocket launch will initiate and the player must quickly leave the area to avoid the explosion. Another note can be found in the power room. The power room leads to the ventilation system, where the player must jump up the pipes to escape the basement. The [[2023 Dodje Challenger Demon 170]] is the reward for successfully completing the event. '''Front Desk Note Transcript''' <div class="mw-collapsible mw-collapsed"> Hey (player name)! Got a report from the server facility, there has been a problem with the cooling system. Something about water supply? Not sure, we need you to head to basement sublevel 4, there should be some valves scattered around down there to redirect water flow back to the facility. The last guy who was working down there went a little coo-coo and shredded the tunnel map, so uhhh... Good luck! P.S. FINTECH LLC AND ALL SUBSIDARY COMPANIES DO NOT OFFER WORKERS COMPENSATION FOR JOB RELATED INJURIES OR ILLNESS, REFER TO PAGE 174 SECTION 14 IN YOUR EMPLOYMENT CONTRACT. P.S.S. Don't spend too long around down there, the higher ups said something about company secrets? I don't know, be careful, I imagine they don't want you seeing some things. </div> '''Power Room Note Transcript''' <div class="mw-collapsible mw-collapsed"> LOG DATE October 31, 1987 final record for bonita springs sanitation plant complex 11d. ZERO ISSUES (thanks max for looking over the night shift) Minimal reports report log one employees from fintech stopping in to check up the sewer connection to their building. Did not want any sanitation plant workers assisting them. Something about security. This facility will be closed off to the new system tomorrow. farewell! final note another employee reported morse code in a service tunnel somewhere back in the tunnels. could be something with fintech im not sure. probably not worth the effort to check out.. maybe in the future. </div> '''Codes''' <div class="mw-collapsible mw-collapsed"> In the "tree room", a morse code audio plays. This audio decodes to "GULL1BL3", which can be redeemed for $150K ingame cash. In Raft's room, another morse code audio plays after the SWFL theme song stops. This audio decodes to "MUTUALLYASSUREDDESTRUCTION"..... </div> '''Gallery''' <div class="mw-collapsible mw-collapsed"> <gallery> File:GotIt.jpg|After picking up the flashlight. The first valve can be seen. File:Raft.jpg|Raft's model File:HeHungers.jpg|Raft chasing the player File:Lockers.jpg|Lockers can be used to hide from Raft when he is chasing the player. File:Lolkindalikethattvshow.jpg|Hole in the wall. File:Damnyoulivelikethis.jpg|Raft's room. File:Cutout.jpg| File:Somekindaroomidkwhatever.jpg|On the way to the power room. File:Electricavenue.jpg|Power room File:Bigmachineidk.jpg|Almost there... File:Pipes.jpg|Going up... File:Exit.jpg|Just before the exit File:Nostalgia.jpg| File:Demonmessage.jpg| File:TheTree.jpg|The "tree room". The player can easily get stuck in here if they're not careful. File:TheOrb.jpg|This mysterious orb explodes and kills the player when touched. </gallery> </div> == Hut == In a neighborhood off the highway from the Unemployed spawn to Seaside Bar & Grill, there is a dirt hut with a driveway. It is completely empty. <gallery> File:Hut.jpg </gallery> == Offroad Trail == An offroad trail can be found off the highway past Seaside Bar & Grill. <gallery> File:Trail.jpg </gallery> == Offroad Race Track == An offroad race track can be found past the offroad trail. There is a small house off the track with an abandoned [[1969 Fard Mustang Boss 427]] out front. <gallery> File:OffroadTrack.jpg </gallery> == bruh == "bruh" is printed to the Developer Console whenever a [[Rift Driver|Rift driver]] picks up a passenger. <gallery> File:Bruh.jpg </gallery> == Flaming Garfield == A flaming Garfield can be found in [[Jeff's Pizza]]. <gallery> File:Flaminggarfield.jpg </gallery> == Nice Parking == There is a [[Pohrse]] parked crooked in the Fintech parking lot. <gallery> File:NiceParking.jpg </gallery> == Damaged Stop Sign == There is a damaged stop sign near a building across from the dealership. <gallery> File:Damagedsign.jpg </gallery> == Jerma == This image can be found on the bottom of the [[Fintech Employee|Fintech]] CEO's desk. <gallery> File:Jerma.jpg </gallery> 25d1b4256399b5e8a8203d2459c8413829dd2896 Tuning 0 1685 3690 3581 2023-11-02T05:02:03Z SWWebster 20 /* Performance */ wikitext text/x-wiki {{Needshelp}} Players can modify and tune their vehicles at [[Dealership Employee#Location|Sparrow Motorsports]], [[Sunset Performance#Location|Sunset Performance]], and [[Sussy's Mechanic Shop#Location|Sussy's Mechanic Shop]]. Some modifications require reaching a certain job rank at one of these locations or a gamepass. Such modifications are shown below: {| class="wikitable" |- ! Modification !! Requirement |- | Custom paint || Car Colors+ gamepass |- | Paint reflectance || Car Reflectance gamepass |- | Stage 2 engine, forced induction, brakes, weight reduction, transmission and drivetrain swaps || Rank 2+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Stage 3 engine, forced induction, brakes, weight reduction and transmission|| Rank 3+ at either the [[Dealership Employee]], [[Sunset Performance]] or [[Sussy's Mechanic Shop]] jobs |- | Advanced suspension settings, differential settings, steering settings and gearing settings|| Advanced Tuning gamepass |} There are three types of modifications available. == Paint == Paint has three tabs: === Factory Paint === Select a color from a preset selection of factory paint colors. If your vehicle has an optional livery, you can add or remove it here. === Custom Paint === Use an HSL color picker to create a custom paint color for your vehicle. ===Reflectance=== Change the reflectance of your vehicle's paint. ==Performance== ''You may also want to see [https://docs.google.com/document/d/1s9PqH0U90sxNTiQDGacPHC6NpSW8DbxGF-yoLnpKJpg/edit Strigid's explanation of performance tuning]. Most of the information in this section comes from there.'' Performance has 12 tabs: ===Engine=== Select from 3 stages. The higher the stage, the more power your vehicle's engine will produce. ===Forced Induction=== Select from 3 stages of a choice of either a turbocharger or a supercharger. The higher the stage, the higher the boost your turbo or supercharger will produce. ===Brakes=== Select from 3 stages. Each stage increases braking power. You can also adjust your brake bias towards the front or rear. ===Weight=== Select from 3 stages of weight reduction. Street reduces your vehicle's weight by 100 lb, Sport reduces the weight by 250 lb, and Race reduces the weight by 500 lb. ===Tires=== Install drift or grip tires. ===Transmission=== Select from 3 stages. Each stage reduces shift time. ===Suspension=== If you do not own the Advanced Tuning gamepass, you can select from 3 preset ride height settings. With the Advanced Tuning gamepass, you can adjust the following suspension settings: '''Stiffness:''' Adjusts the suspension's stiffness (how much the suspension travels when hitting a bump) '''Damping:''' Adjusts suspension damping (how fast the suspension returns to default ride height after hitting a bump) '''Pre-compress:''' Adjusts how compressed the springs are by default (ride height adjustment without adjusting stiffness) '''Extension limit:''' Adjusts how far the suspension will extend without any weight on the car '''Compression limit:''' Adjusts how far the suspension will compress when completely bottomed out. You can use this and Ext. Lim. to adjust the overall length of travel for the suspension. ===Wheel Width=== Adjust the width of the front and rear wheels. ===Wheel Size=== Adjust the diameter of the front and rear wheels. ===Camber=== Adjust the camber of the front and rear wheels. ===Offset=== Adjust the offset of the front and rear wheels. ===Drivetrain=== Swap your vehicle's drivetrain. You can choose FWD, RWD, or AWD. ===Differential=== Adjust the differential settings below. On an AWD car, you can adjust the front and rear differentials independently as well as how much power goes to the front or rear wheels. '''Power:''' As you increase Power, the differential will lock more when under throttle. This is used primarily if you want the car to slide more on throttle. '''Coast:''' As you increase Coast, the differential will lock more under deceleration. This is used primarily if you want the car to slide more when letting off the throttle. '''Preload:''' Adjusts how aggressively the differential will lock. For example, if you wanted a completely open differential, you would lower Preload. If you wanted to simulate a welded differential, you would increase Preload. ===Steering=== Adjust several steering settings, shown below. '''Steer Speed:''' How quickly the wheels will turn when steering. '''Return Speed:''' How quickly the wheels will return to a straight position when you stop steering. '''Steer Decay:''' Dampens the steering's responsiveness after the set speed. For example, if you have this value set to 150, after 150 MPH your steering will be dampened more. This is useful if you want to make the car more twitchy at higher speeds. '''Steer Ratio:''' Ratio of the steering rack. By default, it is set to 9, giving the steering rack a 9:1 steering ratio. In simple terms, a 9:1 ratio means that for every 9 degrees of steering wheel rotations, the wheels will turn 1 degree. '''Lock To Lock:''' Relative to Steer Ratio, adjusts how many degrees you are able to turn your wheels. '''Ackerman:''' Adjusts the angle of the "turning wheel" when steering. For example, if you're turning left and your ackerman is increased, your left wheel will have a higher angle than your right wheel. If you have a decreased ackerman, then your left wheel will have less angle than your right wheel. '''Steering Damping:''' Overall damping of the steering across any range of speed. Similar to Steer Decay. '''Steering Aggressiveness:''' Opposite of Steering Damping. '''Min. Steer Decay:''' Relative to Steer Decay, this value adjusts how much you would like the steering dampened by at the speed you set in Steer Decay. For example, if your Steer Decay is set to 150, and your Min. Steer Decay is set to 15, then at 150 MPH your wheels will steer by 15 degrees less than at 0 MPH. ===Gearing=== Allows you to adjust your final drive ratio. A longer gear ratio will give you a higher top speed at the cost of lower acceleration, and a shorter gear ratio will give you faster acceleration at the cost of a lower top speed. ===Bodykits=== Some vehicles in the game have bodykits. For a list of said vehicles, see [[:Category:Vehicles with bodykits]]. ==Wheels== Wheels has 14 tabs: ===Stock=== Your vehicle's stock wheels. ===Classic (50)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Classicwheels1.jpg|$1,528 - ATS Classic File:Classicwheels2.jpg|$1,500 - ATS Cup File:Classicwheels3.jpg|$2,800 - Devil Japan Shadow Spoke File:Classicwheels4.jpg|$2,376 - Work Meister CR01 File:Classicwheels5.jpg|$2,376 - Work Meister CR01 File:Classicwheels6.jpg|$2,800 - Work Equip 01 File:Classicwheels7.jpg|$1,268 - Work Equip 02 File:Classicwheels8.jpg|$1,728 - Work Equip 03 File:Classicwheels9.jpg|$1,728 - Work Equip 03 File:Classicwheels10.jpg|$1,728 - Work Equip 40 File:Classicwheels11.jpg|$1,728 - Work Equip 40 File:Classicwheels12.jpg|$1,500 - Gold OEM [[1987 DeTomato Pantera GT5-S|De Tomaso Pantera]] Wheel File:Classicwheels13.jpg|$2,354 - SSR Formula Mesh File:Classicwheel14.jpg|$2,354 - SSR Formula Mesh File:Classicwheel15.jpg|$4,000 - Panasport G7 File:Classicwheel16.jpg|$4,000 - Panasport G7 File:Classicwheel17.jpg|$4,000 - Panasport G7 File:Classicwheel18.jpg|$2,295 - Vintage Wheels HA02 File:Classicwheel19.jpg|$1,320 - Momo Heritage 6 File:Classicwheel20.jpg|$1,320 - Momo Heritage 6 File:Classicwheel21.jpg|$1,320 - Momo Heritage 6 File:Classicwheel22.jpg|$716 - Scott Drake Magnum 500 File:Classicwheel23.jpg|$1,680 - SSR Longchamp XR4 File:Classicwheel24.jpg|$940 - Scott Drake LW50 File:Classicwheel25.jpg|$1,656 - Work Meister S1 2P File:Classicwheel26.jpg|$1,856 - SSR MK1 File:Classicwheel27.jpg|$2,660 - SSR MK2 File:Classicwheel28.jpg|$2,660 - SSR MK2 File:Classicwheel29.jpg|$2,660 - SSR MK2 File:Classicwheel30.jpg|$2,836 - SSR MK3 File:Classicwheel31.jpg|$2,836 - SSR MK3 File:Classicwheel32.jpg|$2,836 - SSR MK3 File:Classicwheel33.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel34.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel35.jpg|$1,516 - RS Watanabe 8 Spoke File:Classicwheel36.jpg|$664 - American Racing Smoothie File:Classicwheel37.jpg|$1,220 - SSR Star Shark File:Classicwheel38.jpg|$1,220 - SSR Star Shark File:Classicwheel39.jpg|$1,560 - Hayashi Type CR File:Classicwheel40.jpg|$3,295 - Volk TE37V File:Classicwheel41.jpg|$3,295 - Volk TE37V File:Classicwheel42.jpg|$704 - American Racing Torq Thrust D File:Classicwheel43.jpg|$628 - American Racing Torq Thrust II Custom File:Classicwheel44.jpg|$1,860 - American Racing 500 Mono Cast File:Classicwheel45.jpg|$968 - American Racing Rally File:Classicwheel46.jpg|$1,024 - American Racing Draft File:Classicwheel47.jpg|$1,024 - American Racing Draft File:Classicwheel48.jpg|$1,412 - American Racing Salt Flat File:Classicwheel49.jpg|$1,412 - American Racing Salt Flat File:Classicwheel50.jpg|$11,548 - Hayashi Yayoi </gallery> </div> ===Drag (32)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Dragwheel1.jpg|$1,320 - Center Line Auto Drag File:Dragwheel2.jpg|$1,508 - Center Line Convo Pro File:Dragwheel3.jpg|$1,416 - Weld Draglite File:Dragwheel4.jpg|$1,160 - Forgestar F14 Drag File:Dragwheel5.jpg|$1,500 - Weld Laguna File:Dragwheel6.jpg|$2,260 - Weld Laguna 6 File:Dragwheel7.jpg|$3,000 - Weld Laguna 6 Beadlock File:Dragwheel8.jpg|$3,000 - Weld Laguna Beadlock File:Dragwheel9.jpg|$3,292 - Weld Magnum Import File:Dragwheel10.jpg|$3,016 - Weld Magnum Import Beadlock File:Dragwheel11.jpg|$1,472 - Weld Prostar File:Dragwheel12.jpg|$1,652 - Weld Rodlite File:Dragwheel13.jpg|$4,204 - Weld Ventura File:Dragwheel14.jpg|$5,652 - Weld Ventura Beadlock File:Dragwheel15.jpg|$4,204 - Weld S76 File:Dragwheel16.jpg|$6,520 - Weld S76 Beadlock File:Dragwheel17.jpg|$4,080 - Weld S77 File:Dragwheel18.jpg|$5,652 - Weld S77 Beadlock File:Dragwheel19.jpg|$4,412 - Weld S80 File:Dragwheel20.jpg|$6,220 - Weld S80 Beadlock File:Dragwheel21.jpg|$4,488 - Weld S81 File:Dragwheel22.jpg|$6,480 - Weld S81 Beadlock File:Dragwheel23.jpg|$3,880 - Weld S81 HD File:Dragwheel24.jpg|$7,172 - Weld S81 HD Beadlock File:Dragwheel25.jpg|$4,488 - Weld S82 File:Dragwheel26.jpg|$6,480 - Weld S82 Beadlock File:Dragwheel27.jpg|$3,120 - Weld Tuner Import File:Dragwheel28.jpg|$4,336 - Weld Tuner Import Beadlock File:Dragwheel29.jpg|$1,640 - Weld Ventura 6 File:Dragwheel30.jpg|$3,000 - Weld Ventura 6 Beadlock File:Dragwheel31.jpg|$2,800 - Weld Vitesse File:Dragwheel32.jpg|$5,180 - Weld Vitesse Beadlock </gallery> </div> ===Euro (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Eurowheel1.jpg|$4,938 - BBS Super RS File:Eurowheel2.jpg|$10,530 - HRE 501 File:Eurowheel3.jpg|$8,008 - HRE 300 File:Eurowheel4.jpg|$5,195 File:Eurowheel5.jpg|$3,500 - BBS CI-R File:Eurowheel6.jpg|$5,195 File:Eurowheel7.jpg|$4,400 - AC Schnitzer Type 2 3-Piece File:Eurowheel8.jpg|$3,978 File:Eurowheel9.jpg|$8,340 - BBS FI-R File:Eurowheel10.jpg|$4,233 File:Eurowheel11.jpg|$5,760 - BBS LM-R File:Eurowheel12.jpg|$2,900 - HRE FF01 </gallery> </div> ===Offroad (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Offroadwheel1.jpg|$1,356 File:Offroadwheel2.jpg|$1,732 File:Offroadwheel3.jpg|$1,152 File:Offroadwheel4.jpg|$1,172 File:Offroadwheel5.jpg|$1,388 File:Offroadwheel6.jpg|$147 File:Offroadwheel7.jpg|$1,436 File:Offroadwheel8.jpg|$1,356 File:Offroadwheel9.jpg|$1,336 File:Offroadwheel10.jpg|$147 File:Offroadwheel11.jpg|$188 File:Offroadwheel12.jpg|$1,100 </gallery> </div> ===Rally (13)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Rallywheel1.jpg|$1,380 File:Rallywheel2.jpg|$1,300 File:Rallywheel3.jpg|$1,744 File:Rallywheel4.jpg|$1,188 File:Rallywheel5.jpg|$1,380 File:Rallywheel6.jpg|$728 File:Rallywheel7.jpg|$728 File:Rallywheel8.jpg|$1,760 File:Rallywheel9.jpg|$1,760 File:Rallywheel10.jpg|$1,668 File:Rallywheel11.jpg|$1,236 File:Rallywheel12.jpg|$1,528 File:Rallywheel13.jpg|$1,236 </gallery> </div> ===SUV (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:SUVwheel1.jpg|$1,864 File:SUVwheel2.jpg|$1,776 File:SUVwheel3.jpg|$3,816 File:SUVwheel4.jpg|$2,264 File:SUVwheel5.jpg|$4,784 File:SUVwheel6.jpg|$3,304 File:SUVwheel7.jpg|$3,304 File:SUVwheel8.jpg|$5,804 File:SUVwheel9.jpg|$3,816 File:SUVwheel10.jpg|$1,532 File:SUVwheel11.jpg|$4,784 File:SUVwheel12.jpg|$1,896 </gallery> </div> ===Stance (48)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Stancewheel1.jpg|$3,672 - Work Meister S1 3P File:Stancewheel2.jpg|$450 - MB Battle File:Stancewheel3.jpg|$4,000 - SSR Minerva File:Stancewheel4.jpg|$2,120 - Work Emotion T7R File:Stancewheel5.jpg|$1,500 - Heritage Kokoro MonoC File:Stancewheel6.jpg|$3,120 - Volk TE37 File:Stancewheel7.jpg|$6,290 - AVS Model 6 File:Stancewheel8.jpg|$2,880 - Work Euroline DH File:Stancewheel9.jpg|$2,515 - Volk TE37SL File:Stancewheel10.jpg|$3,672 - Work Meister S1 3P File:Stancewheel11.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel12.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel13.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel14.jpg|$5,500 - AVS Model 5 File:Stancewheel15.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel16.jpg|$2,500 - Volk GT-C File:Stancewheel17.jpg|$5,500 - AVS Model 5 File:Stancewheel18.jpg|$5,580 - SSR Professor MS3 File:Stancewheel19.jpg|$1,900 - Work Emotion D9R File:Stancewheel20.jpg|$5,400 - Work Emotion CR 3P File:Stancewheel21.jpg|$1,799 - Weds Kranze Cerberus File:Stancewheel22.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel23.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel24.jpg|$3,250 - Weds Kranze LXZ File:Stancewheel25.jpg|$3,120 - Volk TE37 File:Stancewheel26.jpg|$6,620 - Junction Produce Scara File:Stancewheel27.jpg|$3,120 - Volk TE37 File:Stancewheel28.jpg|$4,300 - Work Meister L1 3P File:Stancewheel29.jpg|$6,290 - AVS Model 6 File:Stancewheel30.jpg|$3,168 - Weds Kranze Bazreia File:Stancewheel31.jpg|$1,728 - Work Emotion CR Kiwami File:Stancewheel32.jpg|$2,120 - Work Emotion T7R File:Stancewheel33.jpg|$10,300 - HRE C109 File:Stancewheel34.jpg|$3,120 - Volk TE37 File:Stancewheel35.jpg|$1,900 - Work Emotion D9R File:Stancewheel36.jpg|$1,999 - Yokohama Super Advan V2 File:Stancewheel37.jpg|$2,500 - Volk GT-C File:Stancewheel38.jpg|$2,800 - Work Equip 05 File:Stancewheel39.jpg|$3,120 - Volk TE37 File:Stancewheel40.jpg|$3,120 - Work VS-KF File:Stancewheel41.jpg|$15,996 - Blitz Type 03 File:Stancewheel42.jpg|$2,120 - Work Emotion T7R File:Stancewheel43.jpg|$4,300 - Work Meister L1 3P File:Stancewheel44.jpg|$1,799 - SSR Koenig Speed Star File:Stancewheel45.jpg|$2,599 - Work Euroline Type-N File:Stancewheel46.jpg|$450 - MB Battle File:Stancewheel47.jpg|$1,900 - Work Emotion D9R File:Stancewheel48.jpg|$2,500 - Volk GT-C </gallery> </div> ===Street (53)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Streetwheels1.jpg|$4,000 - Volk 21C File:Streetwheels2.jpg|$2,600 - Volk CE28N File:Streetwheels3.jpg|$2,600 - Volk CE28N File:Streetwheels4.jpg|$2,600 - Volk CE28N SL File:Streetwheels5.jpg|$2,600 - Volk CE28N File:Streetwheels6.jpg|$2,000 - Work CR Kai File:Streetwheels7.jpg|$2,000 - Work CR Kai File:Streetwheels8.jpg|$2,000 - Work CR Kai File:Streetwheels9.jpg|$660 - Konig Tweak'd File:Streetwheels10.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheels11.jpg|$2,800 - 5Zigen FN01R-C File:Streetwheels12-2.jpg|$1,500 - OEM [[1998 Handa Civic Type R|Honda Civic Type-R (EK9)]] Wheel File:Streetwheels13-2.jpg|$1,500 - OEM [[2005 Handa Integra Type R|Honda Integra Type-R (DC5)]] Wheel File:Streetwheels14.jpg|$4,600 - Volk G025 File:Streetwheels15.jpg|$2,192 - Enkei GTC02 File:Streetwheels16.jpg|$2,192 - Enkei GTC02 File:Streetwheels17.jpg|$680 - Kosei K1 File:Streetwheels18.jpg|$1,048 - Enkei Lusso File:Streetwheel19.jpg|$2,290 - Enkei NT03RR File:Streetwheel20.jpg|$2,290 - Enkei NT03RR File:Streetwheel21.jpg|$2,290 - Enkei NT03RR File:Streetwheel22.jpg|$1,272 - Enkei PF01 File:Streetwheel23.jpg|$2,088 - Enkei PF01 EVO File:Streetwheel24.jpg|$1,364 - Enkei PF05 File:Streetwheel25.jpg|$1,764 - Enkei PF07 File:Streetwheel26.jpg|$5,000 - Volk RE30 File:Streetwheel27.jpg|$5,000 - Volk RE30 File:Streetwheel28.jpg|$5,000 - Volk RE30 File:Streetwheel29.jpg|$2,600 - Advan RG-D2 File:Streetwheel30.jpg|$2,600 - Advan RG-D2 File:Streetwheel31.jpg|$2,100 - Advan RG-III File:Streetwheel32.jpg|$2,100 - Advan RG-III File:Streetwheel33.jpg|$896 - Enkei RPF1 File:Streetwheel34.jpg|$896 - Enkei RPF1 File:Streetwheel35.jpg|$896 - Enkei RPF1 File:Streetwheel36.jpg|$896 - Enkei RPF1 File:Streetwheel37.jpg|$2,136 - Enkei RS05RR File:Streetwheel38.jpg|$2,136 - Enkei RS05RR File:Streetwheel39.jpg|$3,236 - Advan Racing GT File:Streetwheel40.jpg|$3,236 - Advan Racing GT File:Streetwheel41.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel42.jpg|$3,100 - Desmond Regamaster EVO II File:Streetwheel43.jpg|$1,376 - Apex SM-10 File:Streetwheel44.jpg|$1,376 - Apex SM-10 File:Streetwheel45.jpg|$1,376 - Apex SM-10 File:Streetwheel46.jpg|$4,735 - Volk TE37 File:Streetwheel47.jpg|$4,735 - Volk TE37 File:Streetwheel48.jpg|$4,735 - Volk TE37 File:Streetwheel49.jpg|$4,735 - Volk TE37 File:Streetwheel50.jpg|$4,735 - Volk TE37 File:Streetwheel51.jpg|$4,735 - Volk TE37SL File:Streetwheel52.jpg|$3,960 - Volk ZE40 File:Streetwheel53.jpg|$3,960 - Volk ZE40 </gallery> </div> ===Super (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Superwheel1.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel2.jpg|$8,000 - Vossen EVO-1 Three Piece File:Superwheel3.jpg|$2,196 File:Superwheel4.jpg|$7,200 - Vossen EVO-4 Three Piece File:Superwheel5.jpg|$2,400 File:Superwheel6.jpg|$9,600 - Vossen EVO-3 File:Superwheel7.jpg|$1,884 File:Superwheel8.jpg|$2,400 File:Superwheel9.jpg|$2,996 File:Superwheel10.jpg|$2,200 File:Superwheel11.jpg|$2,420 File:Superwheel12.jpg|$8,000 - Vossen EVO-5 Three Piece </gallery> </div> ===TRT (4)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:TRTwheel1.jpg|$1,400 - RTR Tech 7 File:TRTwheel2.jpg|$1,120 - RTR Tech 5 File:TRTwheel3.jpg|$1,532 - RTR Aero 5 File:TRTwheel4.jpg|$1,120 - RTR Tech Mesh </gallery> </div> ===Track (14)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Trackwheel1.jpg|$3,460 File:Trackwheel2.jpg|$1,320 File:Trackwheel3.jpg|$1,748 File:Trackwheel4.jpg|$5,800 File:Trackwheel5.jpg|$1,468 File:Trackwheel6.jpg|$1,748 File:Trackwheel7.jpg|$1,450 File:Trackwheel8.jpg|$1,468 File:Trackwheel9.jpg|$2,956 File:Trackwheel10.jpg|$3,624 File:Trackwheel11.jpg|$960 File:Trackwheel12.jpg|$1,000 File:Trackwheel13.jpg|$960 File:Trackwheel14.jpg|$8,180 </gallery> </div> ===Truck (12)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:Truckwheel1.jpg|$3,759 File:Truckwheel2.jpg|$3,516 File:Truckwheel3.jpg|$4,156 File:Truckwheel4.jpg|$8,249 File:Truckwheel5.jpg|$3,656 File:Truckwheel6.jpg|$7,104 File:Truckwheel7.jpg|$14,636 File:Truckwheel8.jpg|$3,997 File:Truckwheel9.jpg|$5,368 File:Truckwheel10.jpg|$7,904 File:Truckwheel11.jpg|$4,232 File:Truckwheel12.jpg|$5,248 </gallery> </div> ===VIP (40)=== <div class="mw-collapsible mw-collapsed"> <gallery> File:VIPwheel1.jpg|$3,528 - Work Emitz File:VIPwheel2.jpg|$2,299 - Weds Kranze Vishnu File:VIPwheel3.jpg|$3,600 - Work Schwert SC4 File:VIPwheel4.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel5.jpg|$3,600 - Work Schwert SC4 File:VIPwheel6.jpg|$4,000 - Work Gnosis CVD File:VIPwheel7.jpg|$1,690 - Work LS406 File:VIPwheel8.jpg|$8,000 - VIP Modular VX-310 File:VIPwheel9.jpg|$4,120 - Work Gnosis CVX File:VIPwheel10.jpg|$1,549 - Trafficstar DTX File:VIPwheel11.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel12.jpg|$3,276 - Work Gnosis GR205 File:VIPwheel13.jpg|$2,880 - Aimgain GIIM File:VIPwheel14.jpg|$3,900 - Work Zistance W5S File:VIPwheel15.jpg|$1,950 - Work LS207 File:VIPwheel16.jpg|$3,000 - Weds Kranze Ratzinger File:VIPwheel17.jpg|$5,800 - SevenK Kadi File:VIPwheel18.jpg|$6,000 - Work Equip E10 File:VIPwheel19.jpg|$1,800 - Weds Kranze Chrishna File:VIPwheel20.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel21.jpg|$3,900 - Work Zistance W5S File:VIPwheel22.jpg|$1,250 - Trafficstar SFR File:VIPwheel23.jpg|$3,276 - Work Gnosis GR203 File:VIPwheel24.jpg|$1,690 - Work LS406 File:VIPwheel25.jpg|$2,650 - Work Equip E05 File:VIPwheel26.jpg|$3,979 - Weds Kranze Graben File:VIPwheel27.jpg|$2,550 - Leon Hardiritt Waffe File:VIPwheel28.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel29.jpg|$1,950 - Work LS207 File:VIPwheel30.jpg|$3,600 - Leon Hardiritt Orden File:VIPwheel31.jpg|$2,630 - Aimgain G File:VIPwheel32.jpg|$2,488 - Work Varianza V5S File:VIPwheel33.jpg|$1,600 File:VIPwheel34.jpg|$876 File:VIPwheel35.jpg|$1,470 File:VIPwheel36.jpg|$1,900 File:VIPwheel37.jpg|$2,604 File:VIPwheel38.jpg|$3,167 File:VIPwheel39.jpg|$1,360 File:VIPwheel40.jpg|$1,024 </gallery> </div> [[#top|Go to top of page]] df1742785bca5813218e09cf0472befb12ab4515 Toyoto 0 23 3691 113 2023-11-05T02:05:09Z SWWebster 20 wikitext text/x-wiki {{Makeinfo|makename=Toyoto|makeimage=Toyoto_Logo.png|rllink=https://en.wikipedia.org/wiki/Toyota|rlname=Toyota}} Toyoto is a fictional car company in Southwest Florida. As of 11/3/2023, All Toyoto vehicles have been removed from the game. It is based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can find a list of all vehicles by Toyoto [[:Category:Toyoto|here.]] b1da97cd259a85ebf333c5cc8eea34dca8e057b7 3692 3691 2023-11-05T02:05:27Z SWWebster 20 wikitext text/x-wiki {{Makeinfo|makename=Toyoto|makeimage=Toyoto_Logo.png|rllink=https://en.wikipedia.org/wiki/Toyota|rlname=Toyota}} Toyoto was a fictional car company in Southwest Florida. As of 11/3/2023, All Toyoto vehicles have been removed from the game. It was based on [https://en.wikipedia.org/wiki/Toyota Toyota.] == Vehicles by Toyoto == You can find a list of all vehicles by Toyoto [[:Category:Toyoto|here.]] f5b1a5f8b24f3a38a6d95513a53ec71ffb50133f 1988 Toyoto 4Runner 0 1454 3693 1956 2023-11-05T02:06:45Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=1988 Toyoto 4Runner |image=884Runner_Front.jpg |make=Toyoto |type=SUV |price=$6,250 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_4Runner#First_generation_(N60;_1983) |rlname=Toyota 4Runner (1st gen.) |limited=0 |electric=0 }} The 1988 Toyoto 4Runner was a two door SUV produced by [[Toyoto]]. It has been removed from the game. ==Stats== The 4Runner has 5 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=105|tqval=140|whval=3968|spdval=92|drv=AWD}} {{Maxstats|hpval=662|tqval=978|whval=3498|spdval=109}} ==Gallery== <gallery> File:884Runner_Rear.jpg|Rear view of the 1988 Toyoto 4Runner. </gallery> af31d5a6a71f3d2697209003c7532e61f3d0e29c 2000 Toyoto Supra 0 441 3694 655 2023-11-05T02:07:07Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2000 Toyoto Supra |image=A80_Front.jpg |make=Toyoto |type=Classic |price=$25,200 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Supra#Fourth_generation_(A80;_1993) |rlname=Toyota Supra (4th gen.) |limited=0 |electric=0 }} The 2000 Toyoto Supra was a two door coupe produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Supra has 2 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=329|tqval=464|whval=3450|spdval=147|drv=RWD}} {{Maxstats|hpval=1186|tqval=1187|whval=2950|spdval=199}} ==Gallery== <gallery> File:A80_Rear.jpg|Rear view of the 2000 Toyoto Supra. </gallery> ff76f2e101749923bc57e9d2a163c44ea7ccd2e6 2001 Toyoto MR2 0 651 3695 938 2023-11-05T02:07:45Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2001 Toyoto MR2|image=mr2_front.jpg|make=Toyoto|type=Coupe|price=$7,999|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Toyota_MR2#Third_generation_(W30;_1999–2007)|rlname=Toyota MR2 Spyder (W30)|limited=0|electric=0}} The 2001 Toyoto MR2 is a two-door mid-engined sportscar produced by [[Toyoto]]. It has been removed from the game. == Stats == The MR2 has two seats and a maximum fuel capacity of 13 gallons. {{Stockstats|hpval=138|tqval=125|whval=2,195|spdval=119|drv=RWD}}{{Maxstats|hpval=910|tqval=753|whval=1,695|spdval=160}} == Gallery == <gallery> File:Mr2 rear.jpg|The rear view of the 2001 Toyoto MR2. </gallery> 6948ade2fd372435c1aac9736a2b151152f8e3dc 2014 Toyoto FJ Cruiser 0 1021 3696 1780 2023-11-05T02:08:05Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2014 Toyoto FJ Cruiser|image=FJ Cruiser Front.jpg|make=Toyoto|type=SUV|price=$37,999|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Toyota_FJ_Cruiser|rlname=Toyota FJ Cruiser|limited=0|electric=0}} The 2014 Toyoto FJ Cruiser was a 4-door SUV produced by [[Toyoto]]. It has been removed from the game. == Stats == The FJ Cruiser seats 5 people and has a maximum fuel capacity of 18.9 gallons {{Stockstats|hpval=259|tqval=278|whval=4,343|spdval=105|drv=AWD}}{{Maxstats|hpval=906|tqval=887|whval=3,843|spdval=179}} == Gallery == [[File:FJ Cruiser Rear.jpg|left|thumb|Rier view of the FJ Cruiser]] d1e819b6daafa76f77b97cda6919441e68d49917 2018 Toyoto Tacoma 0 215 3697 365 2023-11-05T02:08:27Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2018 Toyoto Tacoma |image=Tacoma_Front.jpg |make=Toyoto |type=Pickup |price=$44,075 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Tacoma#Third_generation_(N300;_2015) |rlname=Toyota Tacoma (3rd gen.) |limited=0 |electric=0 }} The 2018 Toyoto Tacoma is a four door pickup truck produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Tacoma has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=277|tqval=273|whval=4480|spdval=115|drv=AWD}} {{Maxstats|hpval=930|tqval=1358|whval=3980|spdval=202}} ==Gallery== <gallery> File:Tacoma_Rear.jpg|Rear view of the 2018 Toyoto Tacoma. </gallery> 7a209ce938ed479d146a8433eddcf1dd8efe339f 3698 3697 2023-11-05T02:08:37Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2018 Toyoto Tacoma |image=Tacoma_Front.jpg |make=Toyoto |type=Pickup |price=$44,075 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Tacoma#Third_generation_(N300;_2015) |rlname=Toyota Tacoma (3rd gen.) |limited=0 |electric=0 }} The 2018 Toyoto Tacoma was a four door pickup truck produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Tacoma has 5 seats and a fuel capacity of 21 gallons. {{Stockstats|hpval=277|tqval=273|whval=4480|spdval=115|drv=AWD}} {{Maxstats|hpval=930|tqval=1358|whval=3980|spdval=202}} ==Gallery== <gallery> File:Tacoma_Rear.jpg|Rear view of the 2018 Toyoto Tacoma. </gallery> 83a6a0e870cf3972efcfa712e5ad219e4b6c92f8 2019 Toyoto 4Runner TRD-Pro 0 1282 3699 1689 2023-11-05T02:09:00Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2019 Toyoto 4Runner TRD-Pro |image=194Runner_Front.jpg |make=Toyoto |type=SUV |price=$50,990 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_4Runner#Fifth_generation_(N280;_2009) |rlname=Toyota 4Runner (5th gen.) |limited=0 |electric=0 }} The 2019 Toyoto 4Runner TRD-Pro was a four door SUV produced by [[Toyoto]]. It has been removed from the game. ==Stats== The 4Runner TRD-Pro has 5 seats and a fuel capacity of 23 gallons. {{Stockstats|hpval=270|tqval=279|whval=4750|spdval=116|drv=AWD}} {{Maxstats|hpval=920|tqval=901|whval=4250|spdval=202}} ==Gallery== <gallery> File:194Runner_Rear.jpg|Rear view of the 2019 Toyoto 4Runner TRD-Pro. </gallery> 93e4e1d8bf3bc29917859889efdbb3fca3a79bc2 2019 Toyoto GT86 0 152 3700 2920 2023-11-05T02:09:23Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2019 Toyoto GT86 |image=GT86_Front.jpg |make=Toyoto |type=Coupe |price=$26,655 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_86#First_generation_(ZN6/ZC6;_2012) |rlname=Toyota 86 |limited=0 |electric=0 }} The 2019 Toyoto GT86 was a two door coupe produced by [[Toyoto]]. It has been removed from the game. ==Stats== The GT86 has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=204|tqval=192|whval=2776|spdval=135|drv=RWD}} {{Maxstats|hpval=1049|tqval=1141|whval=2258|spdval=163}} {{Bodykits}} <gallery> File:GT86_CS_Front.jpg|Momentum Type 2 (ChargeSpeed Type 2) File:GT86_CS_Rear.jpg|Momentum Type 2 (ChargeSpeed Type 2) File:GT86_MD_Front.jpg|Stylista (Modellista) File:GT86_MD_Rear.jpg|Stylista (Modellista) File:GT86_RB_Front.jpg|Rabbit Booster V2 (Rocket Bunny) File:GT86_RB_Rear.jpg|Rabbit Booster V2 (Rocket Bunny) </gallery> ==Gallery== <gallery> File:GT86_Rear.jpg|Rear view of the 2019 Toyoto GT86. </gallery> 0f1a4a2a0837b1943538fcd79024ec285ffa1759 2020 Toyoto Avalon TRD 0 806 3701 1820 2023-11-05T02:10:23Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Avalon TRD|image=TRD Avalon Front.jpg|make=Toyoto|type=Sedan|price=Free|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Toyota_Avalon|rlname=Toyota Avalon TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD was a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Avalon XLE]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in New Years 2022. It has been removed from the game. == Stats == The Avalon has 5 seats and has a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3638|spdval=130|drv=FWD}}{{Maxstats|hpval=817|tqval=683|whval=3138|spdval=190}} == Gallery == <gallery> File:TRD Avalon Rear.jpg|TRD Avalon Rear End </gallery> a5c82c1078b7f778e38f4069a7007f91ae5ab127 2020 Toyoto Avalon XLE 0 645 3702 932 2023-11-05T02:10:44Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2020 Toyoto Avalon XLE |image=Avalon_Front.jpg |make=Toyoto |type=Sedan |price=$36,500 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Avalon#Fifth_generation_(XX50;_2018) |rlname=Toyota Avalon (5th gen.) |limited=0 |electric=0 }} The 2020 Toyoto Avalon XLE was a four door sedan produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Ghost has 5 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3670|spdval=130|drv=FWD}} {{Maxstats|hpval=941|tqval=786|whval=3070|spdval=199}} ==Gallery== <gallery> File:Avalon_Rear.jpg|Rear view of the 2020 Toyoto Avalon XLE. </gallery> 6eb162b3bf0d4f5ba4f1b597a23cb8f949703af1 3703 3702 2023-11-05T02:10:56Z SWWebster 20 /* Stats */ wikitext text/x-wiki {{Carinfo |name=2020 Toyoto Avalon XLE |image=Avalon_Front.jpg |make=Toyoto |type=Sedan |price=$36,500 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Avalon#Fifth_generation_(XX50;_2018) |rlname=Toyota Avalon (5th gen.) |limited=0 |electric=0 }} The 2020 Toyoto Avalon XLE was a four door sedan produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Avalon XLE has 5 seats and a fuel capacity of 15 gallons. {{Stockstats|hpval=301|tqval=267|whval=3670|spdval=130|drv=FWD}} {{Maxstats|hpval=941|tqval=786|whval=3070|spdval=199}} ==Gallery== <gallery> File:Avalon_Rear.jpg|Rear view of the 2020 Toyoto Avalon XLE. </gallery> fdb64ee8e34a7eff0eb42f8cdecc27879e01012b 2020 Toyoto Camry 0 15 3704 306 2023-11-05T02:11:31Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry|image=Toyoto_Camry.jpg|make=Toyoto|type=Sedan|price=Free|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry (8th gen.)|limited=0|electric=0}} The 2020 Toyoto Camry was a four door sedan produced by [[Toyoto|Toyoto.]] It was a complimentary car given out to all Southwest Florida players. It has been removed from the game. ==Stats== The Camry has 5 seats and has an infinite fuel capacity. No fuel meter is displayed when driving. {{Stockstats|hpval=203|tqval=265|whval=3351|spdval=107|drv=FWD}} {{Maxstats|hpval=1045|tqval=1517|whval=2851|spdval=187}} == Gallery == <gallery> File:Toyoto Camry Rear.jpg|Rear view of the 2020 Toyoto Camry. </gallery> b1fbd97f176341fb7469b10d976bf7f077896a99 2020 Toyoto Camry TRD 0 803 3705 1819 2023-11-05T02:12:38Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Camry TRD|image=Camry TRD Front.jpg|make=Toyoto|type=Sedan|price=Free|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Toyota_Camry_(XV70)|rlname=Toyota Camry TRD|limited=1|electric=0}} The 2020 Toyoto Camry TRD is a four door sedan produced by [[Toyoto|Toyoto.]] The TRD version is a sportier version of the [[2020 Toyoto Camry]] with different lights, and a subtle bodykit with a spoiler. The car was given out as an code car in Easter 2020. It has been removed from the game. == Stats == The Camry has 5 seats and has a fuel capacity of 16 gallons. {{Stockstats|hpval=300|tqval=385|whval=3572|spdval=120|drv=FWD}}{{Maxstats|hpval=1214|tqval=1335|whval=3072|spdval=220}} == Gallery == <gallery> File:Camry TRD Back.jpg|Camry TRD Rear End </gallery> 52d2b94265efce1c0d38140831b3700667193ca7 2020 Toyoto Corolla 0 67 3706 3601 2023-11-05T02:13:09Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2020 Toyoto Corolla|image=2020_Corolla_Front.jpg|make=Toyoto|type=Hatchback|price=$23,415|avail=Available in the dealership|rllink=https://en.wikipedia.org/wiki/Toyota_Corolla_(E210)|rlname=Toyota Corolla (12th gen.)|limited=0|electric=0}} The 2020 Toyoto Corolla was a five door hatchback produced by [[Toyoto|Toyoto.]] It has been removed from the game. == Stats == The Corolla has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=168|tqval=200|whval=3,060|spdval=110|drv=FWD}}{{Maxstats|hpval=974|tqval=837|whval=2,560|spdval=193}} == Gallery == <gallery> File:2020 Corolla Rear.jpg|2020 Corolla Rear </gallery> ==History== '''09/14/2020:''' The Corolla was added to the game. '''6/11/2022:''' The Corolla was remodeled. <gallery> File:Oldcorolla.jpg|The Corolla prior to the 6/11/2022 remodel. </gallery> 51e45605f80250c8d821efca9c5f73febabc1354 2021 Toyoto Prius Prime 0 693 3707 984 2023-11-05T06:50:32Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2021 Toyoto Prius Prime |image=Prius_Front.jpg |make=Toyoto |type=Sedan |price=$30,000 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Prius_Plug-in_Hybrid#Second_generation_%28XW50%3B_2016%E2%80%93present%29= |rlname=Toyota Prius Prime |limited=0 |electric=0 }} The 2021 Toyoto Prius Prime is a five door liftback produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Prius Prime has 5 seats and a fuel capacity of 11 gallons. {{Stockstats|hpval=121|tqval=120|whval=3375|spdval=119|drv=FWD}} {{Maxstats|hpval=732|tqval=385|whval=2875|spdval=151}} ==Gallery== <gallery> File:Prius_Rear.jpg|Rear view of the 2021 Toyoto Prius Prime. </gallery> f363964e17634b6de28be5df5bf81610ec11bb5e 2021 Toyoto Supra 0 1010 3708 1341 2023-11-05T06:51:02Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2021 Toyoto Supra |image=A90_Front.jpg |make=Toyoto |type=Coupe |price=$53,990 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Supra#Fifth_generation_(J29/DB;_2019) |rlname=Toyota Supra (5th gen.) |limited=0 |electric=0 }} The 2021 Toyoto Supra is a two door coupe produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Supra has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=387|tqval=378|whval=3397|spdval=149|drv=RWD}} {{Maxstats|hpval=984|tqval=1090|whval=2897|spdval=195}} ==Gallery== <gallery> File:A90_Rear.jpg|Rear view of the 2021 Toyoto Supra. </gallery> 4f4e1c5fa930c9310e0029aabcb1f5b376b4f8a9 2022 Toyoto Tundra TRD-Pro 0 210 3709 360 2023-11-05T06:51:13Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2022 Toyoto Tundra TRD-Pro |image=Tundra_Front.jpg |make=Toyoto |type=Pickup |price=$66,805 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_Tundra#Third_generation_(XK70;_2022) |rlname=Toyota Tundra (3rd gen.) |limited=0 |electric=0 }} The 2022 Toyoto Tundra TRD-Pro is a four door pickup truck produced by [[Toyoto]]. It has been removed from the game. ==Stats== The Tundra has 5 seats and a fuel capacity of 32 gallons. {{Stockstats|hpval=437|tqval=583|whval=6015|spdval=126|drv=AWD}} {{Maxstats|hpval=1105|tqval=1737|whval=5515|spdval=197}} ==Gallery== <gallery> File:Tundra_Rear.jpg|Rear view of the 2022 Toyoto Tundra TRD-Pro. </gallery> e48980ff8b184147265847e2ac99a363eabb97e7 2023 Toyoto GR Corolla 0 355 3710 529 2023-11-05T06:51:27Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla |image=Corolla_GR_Front.jpg |make=Toyoto |type=Hatchback |price=$32,250 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla |limited=0 |electric=0 }} The 2023 Toyoto GR Corolla is a five door hatchback produced by [[Toyoto]]. It has been removed from the game. ==Stats== The GR Corolla has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=273|whval=3249|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1037|whval=2749|spdval=165}} ==Gallery== <gallery> File:Corolla_GR_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla. </gallery> ca3efdfde6243ee86d9935e0e1d89fc0a7d73e63 2023 Toyoto GR Corolla Circuit Edition 0 356 3711 530 2023-11-05T06:51:41Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Circuit Edition |image=Corolla_Circuit_Front.jpg |make=Toyoto |type=Hatchback |price=$40,550 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Circuit Edition |limited=0 |electric=0 }} The 2023 Toyoto GR Corolla Circuit Edition is a five door hatchback produced by [[Toyoto]]. It has been removed from the game. ==Stats== The GR Corolla Circuit Edition has 5 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=273|whval=3292|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1037|whval=2792|spdval=165}} ==Gallery== <gallery> File:Corolla_Circuit_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Circuit Edition. </gallery> b46f585c4ef7965a73e6a90d4d728fd421078b5e 2023 Toyoto GR Corolla Morizo Edition 0 170 3712 777 2023-11-05T06:52:03Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2023 Toyoto GR Corolla Morizo Edition |image=Corolla_Morizo_Front.jpg |make=Toyoto |type=Hatchback |price=Unknown |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Toyota_GR_Corolla |rlname=Toyota GR Corolla Morizo Edition |limited=1 |electric=0 }} The 2023 Toyoto GR Corolla Morizo Edition is a five door hatchback produced by [[Toyoto]]. It is a limited vehicle that was added on June 11, 2022. It was available for 48 hours and can no longer be purchased. As a limited vehicle, it does not occupy space in the player's inventory. It has been removed from the game. ==Stats== The GR Corolla Morizo Edition has 2 seats and a fuel capacity of 13 gallons. {{Stockstats|hpval=300|tqval=295|whval=3186|spdval=150|drv=AWD}} {{Maxstats|hpval=1212|tqval=1076|whval=2686|spdval=166}} ==Gallery== <gallery> File:Corolla_Morizo_Rear.jpg|Rear view of the 2023 Toyoto GR Corolla Morizo Edition. </gallery> eee0bd5992e3463cfba6c5c296f66148de0dc04f 2023 Toyoto Sequoia TRD-Pro 0 1212 3713 1793 2023-11-05T06:52:29Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2023 Toyoto Sequoia TRD-Pro|image=Sequoia Front.jpg|make=Toyoto|type=SUV|price=$67,050|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Toyota_Sequoia#Third_generation_(XK80;_2022)|rlname=2023 Toyota Sequoia (3rd gen.)|limited=0|electric=0}} The 2023 Toyoto Sequoia TRD-Pro is a four door SUV produced by [[Toyoto]]. It has been removed from the game. == Stats == The Sequoia TRD-Pro seats 7 people and has a maximum fuel capacity of 31.9 gallons {{Stockstats|hpval=437|tqval=583|whval=5,730|spdval=130|drv=AWD}}{{Maxstats|hpval=1,105|tqval=1,737|whval=5,230|spdval=197}} == Gallery == [[File:Sequoia Rear.jpg|left|thumb|Rear view of the Sequoia TRD-Pro]] 525f3caa69526374de3f2bf62b211dd6bb3e49af 2011 Luxuss LFA 0 953 3714 1277 2023-11-05T06:53:15Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2011 Luxuss LFA |image=LFA_Front.jpg |make=Luxuss |type=Super |price=$690,500 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Lexus_LFA |rlname=Lexus LFA |limited=0 |electric=0 }} The 2011 Luxuss LFA was a supercar produced by [[Luxuss]]. It has been removed from the game. ==Stats== The LFA has 2 seats and a fuel capacity of 19 gallons. {{Stockstats|hpval=552|tqval=354|whval=3263|spdval=202|drv=RWD}} {{Maxstats|hpval=1195|tqval=998|whval=2763|spdval=221}} ==Gallery== <gallery> File:LFA_Rear.jpg|Rear view of the 2011 Luxuss LFA. </gallery> 61b1641054d16053f3341510e227b2cba336d3e7 2020 Luxuss LS500 0 640 3715 3327 2023-11-05T06:53:29Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2020 Luxuss LS500 |image=LS500_Front.jpg |make=Luxuss |type=Sedan |price=$75,450 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Lexus_LS#Fifth_generation_(XF50;_2017) |rlname=Lexus LS (5th gen.) |limited=0 |electric=0 }} The 2020 Luxuss LS500 was a four door sedan produced by [[Luxuss]]. It has been removed from the game. ==Stats== The LS500 has 5 seats and a fuel capacity of 22 gallons. {{Stockstats|hpval=415|tqval=432|whval=4707|spdval=125|drv=AWD}} {{Maxstats|hpval=1016|tqval=1155|whval=4207|spdval=193}} ==Gallery== <gallery> File:LS500_Rear.jpg|Rear view of the 2020 Luxuss LS500. </gallery> [[Category:Sucks]] b0553fa2bfdbc1c00644382127ea639d62ea4055 2020 Luxuss RC-F 0 1008 3716 1339 2023-11-05T06:53:41Z SWWebster 20 wikitext text/x-wiki {{Carinfo |name=2020 Luxuss RC-F |image=RC-F_Front.jpg |make=Luxuss |type=Coupe |price=$68,485 |avail=Unavailable |rllink=https://en.wikipedia.org/wiki/Lexus_RC |rlname=Lexus RC-F |limited=0 |electric=0 }} The 2020 Luxuss RC-F was a two door coupe produced by [[Luxuss]]. It has been removed from the game. ==Stats== The RC-F has 4 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=472|tqval=395|whval=3902|spdval=167|drv=RWD}} {{Maxstats|hpval=1111|tqval=900|whval=3237|spdval=212}} ==Gallery== <gallery> File:RC-F_Rear.jpg|Rear view of the 2020 Luxuss RC-F. </gallery> f73ee721c39394a4af5b62dcaa49f8472d51247e 2021 Luxuss LC500 0 48 3717 1859 2023-11-05T06:54:02Z SWWebster 20 wikitext text/x-wiki {{Carinfo|name=2021 Luxuss LC500|image=LC500 Front.jpg|make=Luxuss|type=Coupe|price=$102,620|avail=Unavailable|rllink=https://en.wikipedia.org/wiki/Lexus_LC|rlname=Lexus LC500|limited=0|electric=0}} The 2021 Luxuss LC500 is a two-door luxury coupe produced by [[Luxuss]]. It has been removed from the game. == Stats == The LC500 has 2 seats and a fuel capacity of 17 gallons. {{Stockstats|hpval=471|tqval=398|whval=4,266|spdval=160|drv=RWD}}{{Maxstats|hpval=1,124|tqval=1,148|whval=3,766|spdval=219}} == Gallery == <gallery> File:LC500 Rear.jpg|Rear view of the Luxuss LC500 File:LC500 Prop.jpg|The LC500 can also be seen as a display car at the dealership </gallery> e91fc66b71a9ebdffb1dec4586fabc62cec42703 Luxuss 0 50 3718 129 2023-11-05T06:54:42Z SWWebster 20 wikitext text/x-wiki {{Makeinfo|makename=Luxuss|makeimage=Placeholder_Logo.png|rllink=https://en.wikipedia.org/wiki/Lexus|rlname=Lexus}} Luxuss was a fictional car company in Southwest Florida. It was based on [https://en.wikipedia.org/wiki/Lexus Lexus.] As of 11/4/2023, all Luxuss vehicles have been removed from the game. == Vehicles by Luxuss == You can find a list of all vehicles by Luxuss [[:Category:Luxuss|here.]] cdb61c9b69344d08d15be931d6fb612ebf780d53